From ba1c07eccef8aee1769e7df2f55cb59af45e6e78 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Sat, 19 Dec 2020 20:30:18 -0500 Subject: [PATCH] use default Linux backlog value --- nginx/nginx.conf | 8 ++++---- 1 file 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;