Add temporary directories to in-pod nginx.conf
Some checks failed
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Has been skipped
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Has been skipped
Podman Rootless Demo / deploy-prod (push) Failing after 1m9s

This commit is contained in:
continuist 2025-09-20 23:35:10 -04:00
parent 3bd09c48af
commit 24c26ced6c

View file

@ -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;