maintenance improvements

This commit is contained in:
Stefan Hardegger
2025-09-26 21:41:33 +02:00
parent 74cdd5dc57
commit 5325169495
10 changed files with 377 additions and 65 deletions

View File

@@ -117,7 +117,7 @@ configs:
}
server {
listen 80;
client_max_body_size 256M;
client_max_body_size 600M;
location / {
proxy_pass http://frontend;
proxy_http_version 1.1;
@@ -135,9 +135,13 @@ configs:
proxy_set_header X-Real-IP $$remote_addr;
proxy_set_header X-Forwarded-For $$proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $$scheme;
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
proxy_connect_timeout 900s;
proxy_send_timeout 900s;
proxy_read_timeout 900s;
# Large upload settings
client_max_body_size 600M;
proxy_request_buffering off;
proxy_max_temp_file_size 0;
}
location /images/ {
alias /app/images/;