blob: 484096cece316860a64a815f1dc35f5d362de968 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
server {
listen 5000;
server_name localhost;
index index.htm index.html;
location / {
include uwsgi_params;
client_max_body_size 2000m;
uwsgi_pass unix://{{ socket_file }};
}
location /gui/ {
alias /etc/nginx/yardstick/gui/;
}
location /report/ {
alias /tmp/;
}
}
|