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

    root /var/www/html;

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

    server_name *.mr.simpledemo.onap.org;

    location / {
        proxy_pass http://dmaap.onap-message-router:3904/;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-Proto "http";
    }

}