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

    root /var/www/html;

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

    server_name *.policy.simpledemo.onap.org;

    location / {
        proxy_pass http://pdp.onap-policy:8081/;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-Proto "http";
    }

}