diff options
author | jinquanni <ni.jinquan@zte.com.cn> | 2020-11-23 12:02:56 +0800 |
---|---|---|
committer | jinquanni <ni.jinquan@zte.com.cn> | 2020-11-23 12:11:09 +0800 |
commit | 07a9c52f6bcc44c7d65160fb5ee573be7ca533b5 (patch) | |
tree | 73ca6044af347122a5a705fcead6ff1b52b03a81 | |
parent | 37e0fb8f08d0b7597a623d21ca261c0a5675bdde (diff) |
Fix 'nginx say 10000 worker_connections are not enough'
Issue-ID: MSB-539
Signed-off-by: Jinquan Ni <ni.jinquan@zte.com.cn>
Change-Id: Icac2ba6def947fc45b22a126ea0aa1a6e02f542b
-rw-r--r-- | openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf b/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf index 57f4c69..a340aa8 100644 --- a/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf +++ b/openresty-ext/src/assembly/resources/openresty/nginx/conf/nginx.conf @@ -29,7 +29,7 @@ events { #there is normally no need to specify the following directive explicitly #use epoll; worker_connections 10000; - multi_accept on; + multi_accept off; } http { |