From 0600350211bdf49f04862b5e7d5d8715a0ab8a80 Mon Sep 17 00:00:00 2001 From: Orka Arnest CRUZE Date: Tue, 13 Feb 2024 16:26:31 +0100 Subject: [PATCH] build(docker): nginx temp paths --- .docker/nginx.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.docker/nginx.conf b/.docker/nginx.conf index 043c586..e1b3639 100644 --- a/.docker/nginx.conf +++ b/.docker/nginx.conf @@ -12,6 +12,12 @@ http { sendfile on; keepalive_timeout 65; + 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 8082; listen [::]:8082;