Add support for DCAE in Amsterdam
[oom.git] / kubernetes / config / docker / init / src / config / dcaegen2 / nginx / config / pdp.onap.org.conf
1 server {
2     listen 8081 ;
3     listen [::]:8081 ;
4
5     root /var/www/html;
6
7     index index.html index.htm index.nginx-debian.html;
8
9     server_name *.policy.simpledemo.onap.org;
10
11     location / {
12         proxy_pass http://pdp.onap-policy:8081/;
13         proxy_set_header Host $host;
14         proxy_set_header X-Forwarded-Proto "http";
15     }
16
17 }