PDF & ZIP IMPORT

This commit is contained in:
Stefan Hardegger
2025-12-05 10:21:03 +01:00
parent b1b5bbbccd
commit 77aec8a849
18 changed files with 3490 additions and 22 deletions

View File

@@ -13,7 +13,7 @@ http {
server {
listen 80;
client_max_body_size 2048M; # 2GB for large backup uploads
client_max_body_size 4096M; # 4GB for large backup uploads
# Frontend routes
location / {
@@ -55,8 +55,8 @@ http {
proxy_connect_timeout 900s;
proxy_send_timeout 900s;
proxy_read_timeout 900s;
# Large upload settings (2GB for backups)
client_max_body_size 2048M;
# Large upload settings (4GB for backups)
client_max_body_size 4096M;
proxy_request_buffering off;
proxy_max_temp_file_size 0;
}