Merge pull request #1058 from SkynetLabs/nginx-performance-tweak

bump worker_connections number and auto detect worker_processes number
This commit is contained in:
Karol Wypchło 2021-08-09 15:24:24 +02:00 committed by GitHub
commit 5ea67d3636
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -16,8 +16,8 @@
# See https://github.com/openresty/docker-openresty/blob/master/README.md#nginx-config-files
#
user root;
worker_processes 1;
user root;
worker_processes auto;
#error_log logs/error.log;
#error_log logs/error.log notice;
@ -31,7 +31,7 @@ env SKYNET_SERVER_API;
env ACCOUNTS_ENABLED;
events {
worker_connections 1024;
worker_connections 8192;
}