diff options
Diffstat (limited to 'docker/nginx.sh')
-rwxr-xr-x | docker/nginx.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docker/nginx.sh b/docker/nginx.sh index 26937d134..1ac1d3f42 100755 --- a/docker/nginx.sh +++ b/docker/nginx.sh @@ -20,12 +20,17 @@ server { index index.htm index.html; location / { include uwsgi_params; + client_max_body_size 2000m; uwsgi_pass unix:///var/run/yardstick.sock; } location /gui/ { alias /etc/nginx/yardstick/gui/; } + + location /report/ { + alias /tmp/; + } } EOF fi |