Skip to content

Instantly share code, notes, and snippets.

@frenchbread
Created February 3, 2017 10:57
Show Gist options
  • Save frenchbread/a64e46ce1639572bbc8e254aa24625c0 to your computer and use it in GitHub Desktop.
Save frenchbread/a64e46ce1639572bbc8e254aa24625c0 to your computer and use it in GitHub Desktop.
server {
    listen 80;

    server_name <public_IP>;

    location / {
        proxy_pass http://localhost:18083;
        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