diff --git a/conf/nginx.conf b/conf/nginx.conf index acbcc51..27fc1b2 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -5,4 +5,12 @@ location __PATH__/ { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + + # Set max upload size + client_max_body_size 10G; + + proxy_connect_timeout 600; + proxy_send_timeout 600; + proxy_read_timeout 600; + send_timeout 600; }