diff --git a/proxy/nginx.conf b/proxy/nginx.conf index 7305757c7..b81de49b3 100644 --- a/proxy/nginx.conf +++ b/proxy/nginx.conf @@ -4,6 +4,9 @@ events { http { + # In case of big files + client_max_body_size 200M; + server { listen 8080; @@ -13,11 +16,11 @@ http { 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; - + # HTTP 1.1 support proxy_http_version 1.1; proxy_set_header Connection ""; } } -} \ No newline at end of file +}