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;