Skip to content

Commit

Permalink
Create nginx.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Aug 3, 2024
1 parent 94ca4cf commit 7c70705
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions blockchain_integration/pi_network/CloudNexus/docker/web/nginx.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
server {
listen 80;
server_name pi-network-web;

location / {
proxy_pass http://pi-network-api:8080;
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;
}
}

0 comments on commit 7c70705

Please sign in to comment.