Skip to content

Instantly share code, notes, and snippets.

@dimitrovs
Last active March 14, 2017 05:14
Show Gist options
  • Save dimitrovs/e04170cebdc92fcf2423d37ddd49b3be to your computer and use it in GitHub Desktop.
Save dimitrovs/e04170cebdc92fcf2423d37ddd49b3be to your computer and use it in GitHub Desktop.
events {
worker_connections 4096;
}
http {
client_max_body_size 0;
server {
listen 80;
location / {
proxy_pass http://127.0.0.1:3000/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment