summaryrefslogtreecommitdiffstats
path: root/kubernetes/config/docker/init/src/config/dcaegen2/nginx/config/open.onap.org.conf
blob: ed62a32f20794ec246d2580bdc5a8fa430db1d74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
server {
    listen 80 ;
    listen [::]:80 ;

    root /var/www/html;

    index index.html index.htm index.nginx-debian.html;

    server_name *.openo.simpledemo.onap.org;

    location / {
        proxy_pass http://msb-iag.onap-msb:80/;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-Proto "http";
    }

}