Skip to content

Commit

Permalink
reduce keepalive requests
Browse files Browse the repository at this point in the history
The current value is overkill for serving large files.
  • Loading branch information
thestinger committed Mar 20, 2024
1 parent 36af375 commit c687cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ http {
sendfile on;
sendfile_max_chunk 256k;
tcp_nopush on;
keepalive_requests 256;
keepalive_requests 64;
keepalive_timeout 0;
server_tokens off;
msie_padding off;
Expand Down

0 comments on commit c687cdd

Please sign in to comment.