Skip to content

Instantly share code, notes, and snippets.

@abenrob
Forked from rgwozdz/gist:bf2d082b27c6336381b5
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abenrob/a21957c172b5aded633a to your computer and use it in GitHub Desktop.
Save abenrob/a21957c172b5aded633a to your computer and use it in GitHub Desktop.
upstream kzapi {
server 127.0.0.1:3333;
}
server {
listen 0.0.0.0:80;
server_name kzapi.spatialdevmo.com;
access_log /var/log/nginx/kzapi.spatialdevmo.log;
# Gzip Compression
gzip on;
gzip_comp_level 6;
gzip_vary on;
gzip_min_length 1000;
gzip_proxied any;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript
gzip_buffers 16 8k;
# Proxy to the Node instance
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;
proxy_pass http://localhost:3333;
proxy_redirect off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment