From a9e766046f270b5f2afd893b2d874ee3c1f98f15 Mon Sep 17 00:00:00 2001 From: wiz Date: Wed, 30 Nov 2022 18:10:47 +0900 Subject: [PATCH] [ops] Increase nginx max concurrent streams --- production/nginx/http-basic.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/production/nginx/http-basic.conf b/production/nginx/http-basic.conf index 5d707ca42..dc880cad5 100644 --- a/production/nginx/http-basic.conf +++ b/production/nginx/http-basic.conf @@ -35,3 +35,5 @@ gzip_types application/javascript application/json application/ld+json applicati # limit request body size client_max_body_size 10m; +# need to bump this up for about page sponsor images lol +http2_max_concurrent_streams 256;