Skip to content

Instantly share code, notes, and snippets.

@uhho
Created October 4, 2013 01:16
Show Gist options
  • Star 34 You must be signed in to star a gist
  • Fork 15 You must be signed in to fork a gist
  • Save uhho/6819584 to your computer and use it in GitHub Desktop.
Save uhho/6819584 to your computer and use it in GitHub Desktop.
Sample nginx configuration for NodeJS + SocketIO app
# Load balancer configuration
upstream exampleApp {
# Directs to the process with least number of connections.
least_conn;
# One failed response will take a server out of circulation for 20 seconds.
server 127.0.0.1:10080 fail_timeout=20s;
#server 127.0.0.1:10081 fail_timeout=20s;
#server 127.0.0.1:10082 fail_timeout=20s;
#server 127.0.0.1:10083 fail_timeout=20s;
}
# WebSocket "upgrade" method
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
# Server settings
server {
# Listen on 80 and 443
listen 80;
listen 443 ssl;
root /var/www/exampleApp/;
# Make site accessible from http://exampleApp.com/
server_name exampleApp.com;
# Logs
access_log /var/log/nginx/exampleApp_access.log;
error_log /var/log/nginx/exampleApp_error.log;
# Certificate chained with a certificate authority bundle.
ssl_certificate /etc/ssl/certs/exampleApp.crt;
ssl_certificate_key /etc/ssl/private/exampleApp.key;
# Redirect all non-SSL traffic to SSL.
if ($ssl_protocol = "") {
rewrite ^ https://$host$request_uri? permanent;
}
# pass the request to the node.js server with the correct headers
location / {
# Setting proxy headers
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://exampleApp/;
proxy_redirect off;
# WebSocket headers
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
# Optional headers for better security
# HTTP Strict Transport Security (HSTS) tells a browser that the website should only be accessed through a secure connection.
# add_header Strict-Transport-Security max-age=31536000;
# Never allow content to be framed to avoid clickjacking attacks
# add_header X-Frame-Options DENY;
}
}
@mhipo1364
Copy link

Thanks, but how can I use this?

How can I start my project on four different ports(port is concrete on env directory of project)?

And where should I put this file on nginx?

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