reduce http workers to 16

This commit is contained in:
ari melody 2025-11-05 20:06:59 +00:00
parent 172a072c36
commit f64882b091
Signed by: ari
GPG key ID: 60B5F0386E3DDB7E

View file

@ -79,7 +79,7 @@ env!("CARGO_PKG_VERSION"));
}
};
HttpServer::new(address, 64, trusted_proxies).start(|request, mut response| {
HttpServer::new(address, 16, trusted_proxies).start(|request, mut response| {
response.status(StatusCode::OK);
response.set_header("Content-Type", "text/plain".to_string());
response.set_header("x-powered-by", "GIRL FUEL".to_string());