Skip to content

Instantly share code, notes, and snippets.

@jesulink2514
Created August 10, 2019 04:57
Show Gist options
  • Save jesulink2514/ac2f7de6093123aae181107950eeea58 to your computer and use it in GitHub Desktop.
Save jesulink2514/ac2f7de6093123aae181107950eeea58 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name e93c8012-4d68-43e5-9f7c-779e4bc13799.clouding.host;
location / {
proxy_pass http://localhost:5000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment