Skip to content

Commit

Permalink
reduce keepalive timeout
Browse files Browse the repository at this point in the history
These aren't websites browsed by users. Nearly all of the requests are
done automatically in short batches other than users manually updating
or installing apps which is incredibly rare compared to the automated
requests.
  • Loading branch information
thestinger committed Mar 20, 2024
1 parent 8ef81ef commit 10ee7df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ http {

include root_releases.grapheneos.org.conf;

keepalive_timeout 3m;
keepalive_timeout 15s;

open_file_cache max=2048 inactive=1d;
open_file_cache_valid 1d;
Expand Down Expand Up @@ -286,7 +286,7 @@ http {

include root_apps.grapheneos.org.conf;

keepalive_timeout 3m;
keepalive_timeout 15s;

open_file_cache max=2048 inactive=1d;
open_file_cache_valid 1d;
Expand Down

0 comments on commit 10ee7df

Please sign in to comment.