Skip to content

Instantly share code, notes, and snippets.

@mikebarnhardt
Created January 22, 2016 16:41
Show Gist options
  • Save mikebarnhardt/0e302782f087298cf33f to your computer and use it in GitHub Desktop.
Save mikebarnhardt/0e302782f087298cf33f to your computer and use it in GitHub Desktop.
Basic Nginx Config
server {
listen 80;
# Your server's IP
server_name 11.222.33.44;
# Uncomment to enable:
# access_log /var/log/nginx/log/host.access.log main;
location / {
proxy_pass http://localhost:8000;
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