From 737fb8db5700f42b59d27b43580df8b3464a9eaa Mon Sep 17 00:00:00 2001 From: Marcello Teodori <151025+mteodori@users.noreply.github.com> Date: Mon, 9 Mar 2020 09:42:52 +0000 Subject: [PATCH] AAE-1690 run as non privileged user (#1358) --- docker/nginx.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker/nginx.conf b/docker/nginx.conf index 09126ac50..4b8f6027d 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -1,3 +1,4 @@ +pid /tmp/nginx.pid; worker_processes 1; events { @@ -5,6 +6,11 @@ events { } http { + client_body_temp_path /tmp/client_temp; + proxy_temp_path /tmp/proxy_temp_path; + fastcgi_temp_path /tmp/fastcgi_temp; + uwsgi_temp_path /tmp/uwsgi_temp; + scgi_temp_path /tmp/scgi_temp; server { listen 8080; server_name localhost;