summaryrefslogtreecommitdiffstats
path: root/reporting/docker/nginx.conf
blob: ced8179c1d37bc0bf85dadcc277a6a5abc0a83f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
upstream backends {
    server localhost:8001;
    server localhost:8002;
    server localhost:8003;
    server localhost:8004;
}


server {
    listen 8000;
    server_name localhost;

    location / {
        proxy_pass http://backends;
    }

    location /reporting/ {
        alias /home/opnfv/releng/utils/test/reporting/pages/dist/;
    }

    location /display/ {
        alias /home/opnfv/releng/utils/test/reporting/display/;
    }
}