Skip to content

Instantly share code, notes, and snippets.

@egerlach
Last active September 11, 2015 20:17
Show Gist options
  • Save egerlach/fd2b6e99cfc06f6e9e26 to your computer and use it in GitHub Desktop.
Save egerlach/fd2b6e99cfc06f6e9e26 to your computer and use it in GitHub Desktop.
atlasboardnginx.conf
user nginx;
worker_processes 5;
error_log /var/log/nginx.error.log;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] $request '
'"$status" $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx.access.log main;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name your-domain-name.com;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:3000;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment