Skip to content

Commit

Permalink
reduce keepalive timeout
Browse files Browse the repository at this point in the history
Nearly all of the requests are done automatically in short batches with
long delays in between. Requests aren't made dynamically in response to
user input beyond manually updating or installing apps, so there isn't
much need to optimize for latency.
  • Loading branch information
thestinger committed Mar 20, 2024
1 parent 8ef81ef commit 8e06aa5
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 8e06aa5

Please sign in to comment.