From 62c8e279db492d3b57a4e4b2c6e0e513ef942514 Mon Sep 17 00:00:00 2001 From: theborakompanioni Date: Mon, 6 May 2024 13:04:10 +0200 Subject: [PATCH] fix(nginx): increase upstreams shared memory size --- standalone/nginx/default.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standalone/nginx/default.conf b/standalone/nginx/default.conf index 4edb0e0..30b5658 100644 --- a/standalone/nginx/default.conf +++ b/standalone/nginx/default.conf @@ -1,6 +1,6 @@ upstream jmwalletd_api_backend { - zone upstreams 64K; + zone upstreams 256K; server 127.0.0.1:28183; keepalive 16; }