Skip to content

Instantly share code, notes, and snippets.

@mpociot
Created December 10, 2018 07:05
Show Gist options
  • Save mpociot/1b3fe30920425484a0497d23da540e00 to your computer and use it in GitHub Desktop.
Save mpociot/1b3fe30920425484a0497d23da540e00 to your computer and use it in GitHub Desktop.
    location /websockets/ {
       proxy_pass             http://127.0.0.1:6001/;
       proxy_set_header Host  $host;
       proxy_read_timeout     60;
       proxy_connect_timeout  60;
       proxy_redirect         off;
   
       # Allow the use of websockets
       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