mirror of
https://github.com/GrapheneOS/matrix.grapheneos.org.git
synced 2025-07-12 09:29:34 -04:00
use small fixed TCP buffer sizes for non-TLS HTTP
This commit is contained in:
parent
4298cf4b14
commit
96ddacc69d
1 changed files with 2 additions and 2 deletions
|
@ -95,8 +95,8 @@ http {
|
||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 80 default_server backlog=4096;
|
listen 80 default_server backlog=4096 rcvbuf=2048 sndbuf=2048;
|
||||||
listen [::]:80 default_server backlog=4096;
|
listen [::]:80 default_server backlog=4096 rcvbuf=2048 sndbuf=2048;
|
||||||
|
|
||||||
# https://trac.nginx.org/nginx/ticket/2012
|
# https://trac.nginx.org/nginx/ticket/2012
|
||||||
location / {
|
location / {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue