Fix nginx read-only filesystem issues

This commit is contained in:
Andreas Dueren
2025-06-20 10:09:39 -06:00
parent 09ad85510f
commit 16a51b8c61
3 changed files with 9 additions and 9 deletions

View File

@ -6,6 +6,11 @@ server {
root /tmp;
client_max_body_size 100m;
client_body_temp_path /tmp/nginx/body;
fastcgi_temp_path /tmp/nginx/fastcgi;
proxy_temp_path /tmp/nginx/proxy;
scgi_temp_path /tmp/nginx/scgi;
uwsgi_temp_path /tmp/nginx/uwsgi;
# Security headers
add_header X-Frame-Options SAMEORIGIN;