Skip to content

Instantly share code, notes, and snippets.

@digitaldesigndj
Created January 31, 2014 03:02
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 digitaldesigndj/8725933 to your computer and use it in GitHub Desktop.
Save digitaldesigndj/8725933 to your computer and use it in GitHub Desktop.
BoundStar CommandStar Config
upstream app_commandstar {
server 127.0.0.1:8080;
}
upstream app_boundstar {
server 127.0.0.1:3000;
}
server {
server_name furious.boundstar.com;
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
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://app_boundstar/;
proxy_redirect off;
}
location /status/ {
rewrite ^/starbound/(.*) /$1 break;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
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://app_commandstar/;
proxy_redirect off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment