Skip to content

Instantly share code, notes, and snippets.

@osw4l
Created February 28, 2020 18:38
Show Gist options
  • Save osw4l/5a09275275e4c6aead4144c33a519553 to your computer and use it in GitHub Desktop.
Save osw4l/5a09275275e4c6aead4144c33a519553 to your computer and use it in GitHub Desktop.
server {
server_name domain.com;
location / {
proxy_pass http://localhost:4500;
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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment