code-marketplace

This commit is contained in:
2023-09-30 13:23:39 -07:00
parent 6d3dd0bc87
commit fdfc5b538b
6 changed files with 78 additions and 5 deletions

View File

@ -0,0 +1,9 @@
location / {
proxy_pass http://localhost:3001/;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
proxy_set_header Accept-Encoding gzip;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
}