From 24c26ced6c65250c58648143ddbc9be4ab7160fd Mon Sep 17 00:00:00 2001 From: continuist Date: Sat, 20 Sep 2025 23:35:10 -0400 Subject: [PATCH] Add temporary directories to in-pod nginx.conf --- nginx/nginx.conf | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 5d16e57..2f210c4 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -1,6 +1,6 @@ user nginx; worker_processes auto; -pid /var/run/nginx.pid; +pid /tmp/nginx.pid; events { worker_connections 1024; } @@ -9,6 +9,12 @@ http { tcp_nopush on; tcp_nodelay on; + client_body_temp_path /tmp/client_temp; + proxy_temp_path /tmp/proxy_temp; + fastcgi_temp_path /tmp/fastcgi_temp; + uwsgi_temp_path /tmp/uwsgi_temp; + scgi_temp_path /tmp/scgi_temp; + # health server { listen 8090;