From afeadd0f529289f2a5aaf7438c2e74fbc44e982e Mon Sep 17 00:00:00 2001 From: freedomsunny <13141437733@163.com> Date: Thu, 5 Jan 2023 20:56:12 +0800 Subject: [PATCH] see: https://gryzli.info/2018/03/05/nginx-cannot-assign-requested-address/ --- S3-Nginx-Proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/S3-Nginx-Proxy.md b/S3-Nginx-Proxy.md index 4dc6a0c..527563d 100644 --- a/S3-Nginx-Proxy.md +++ b/S3-Nginx-Proxy.md @@ -3,7 +3,7 @@ It's a common concept to put a proxy in front of S3 that handles requests. Nginx ### Example Nginx config ``` -upstream seaweedfs { server localhost:8333 fail_timeout=0; } +upstream seaweedfs { server localhost:8333 fail_timeout=0; keepalive 20;} server { listen 443 ssl;