Fix incorrect replacement of worker_connections

This commit is contained in:
evgeniy-antonyuk 2022-10-28 10:58:32 +03:00
parent 334041783e
commit 3f22882c85

View file

@ -73,7 +73,7 @@ NGINX_ONLYOFFICE_EXAMPLE_CONF="${NGINX_ONLYOFFICE_EXAMPLE_PATH}/includes/ds-exam
NGINX_CONFIG_PATH="/etc/nginx/nginx.conf"
NGINX_WORKER_PROCESSES=${NGINX_WORKER_PROCESSES:-1}
NGINX_WORKER_CONNECTIONS=${NGINX_WORKER_CONNECTIONS:-$(ulimit -n)}
NGINX_WORKER_CONNECTIONS=${NGINX_WORKER_CONNECTIONS:-1024}
JWT_ENABLED=${JWT_ENABLED:-true}