Skip to content

Instantly share code, notes, and snippets.

@aku
Created April 26, 2013 11:19
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save aku/5466527 to your computer and use it in GitHub Desktop.
Save aku/5466527 to your computer and use it in GitHub Desktop.
Example of Socket.io proxy config for NGINX (version 1.3.13+)
upstream backend {
server 127.0.0.1:3000;
}
server {
listen 80;
access_log /var/log/nginx/yoursite.access.log;
error_log /var/log/nginx/yoursite.error.log;
server_name api.yoursite.com
# prevents 502 bad gateway error
large_client_header_buffers 8 32k;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
# prevents 502 bad gateway error
proxy_buffers 8 32k;
proxy_buffer_size 64k;
proxy_pass http://backend;
proxy_redirect off;
# enables WS support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
}
@Bubelbub
Copy link

Doesnt work for me.
I got more errors than before :O

404 not found.

Fixed in https://gist.github.com/Bubelbub/0a942a0d51a3d329897d
Line 32.

@webmakin
Copy link

webmakin commented Jan 9, 2015

Thank you, this solved a totally different issue for me.

@prdonahue
Copy link

Excellent gist, thanks. Was having trouble until I added the "proxy_redirect off;" (client was complaining of "unknown code 301").

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment