Merge "Document for Euphrates test case results"
[yardstick.git] / ansible / roles / configure_nginx / templates / yardstick.conf.j2
1 server {
2     listen 5000;
3     server_name localhost;
4     index index.htm index.html;
5     location / {
6         include uwsgi_params;
7         client_max_body_size    2000m;
8         uwsgi_pass unix://{{ socket_file }};
9     }
10
11     location /gui/ {
12         alias /etc/nginx/yardstick/gui/;
13     }
14
15     location /report/ {
16         alias /tmp/;
17     }
18 }