diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2020-12-19 20:30:18 -0500 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2020-12-19 20:30:18 -0500 |
| commit | ba1c07eccef8aee1769e7df2f55cb59af45e6e78 (patch) | |
| tree | c508ef63de5822cdaf7740f1942662d3227d0e8c /nginx | |
| parent | e9d014a8ff6a33fc7c6ff27b0518c1bac57f7332 (diff) | |
use default Linux backlog value
Diffstat (limited to 'nginx')
| -rw-r--r-- | nginx/nginx.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 17c47912..0975e3c7 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -62,8 +62,8 @@ http { if_modified_since before; server { - listen 80; - listen [::]:80; + listen 80 backlog=4096; + listen [::]:80 backlog=4096; server_name www.grapheneos.org grapheneos.org www.grapheneos.app grapheneos.app www.vanadium.app vanadium.app; root /var/empty; @@ -72,8 +72,8 @@ http { } server { - listen 443 ssl http2; - listen [::]:443 ssl http2; + listen 443 ssl http2 backlog=4096; + listen [::]:443 ssl http2 backlog=4096; server_name www.grapheneos.org www.grapheneos.app grapheneos.app; root /var/empty; |
