diff --git a/blockchain_integration/pi_network/CloudNexus/roles/pi-network/templates/pi-network-web.conf.j2 b/blockchain_integration/pi_network/CloudNexus/roles/pi-network/templates/pi-network-web.conf.j2 new file mode 100644 index 000000000..a644be45b --- /dev/null +++ b/blockchain_integration/pi_network/CloudNexus/roles/pi-network/templates/pi-network-web.conf.j2 @@ -0,0 +1,13 @@ +server { + listen 80; + server_name pi-network-web; + + location / { + proxy_pass http://localhost:80; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection 'upgrade'; + proxy_set_header Host $host; + proxy_cache_bypass $http_upgrade; + } +}