Skip to content

Instantly share code, notes, and snippets.

@tjmehta
Created April 18, 2012 19:51
Show Gist options
  • Save tjmehta/2416080 to your computer and use it in GitHub Desktop.
Save tjmehta/2416080 to your computer and use it in GitHub Desktop.
nginx conf
server {
listen 80;
server_name localhost;
root /swelly/static;
location / {
try_files index.html =404;
}
location /api {
proxy_pass http://127.0.0.1:3000/api;
}
}
server {
listen 80;
server_name localhost;
root /swelly/static;
location /api {
proxy_pass http://127.0.0.1:3000/api;
#proxy_set_header X-Forwarded-Proto https;
#proxy_set_header Host $http_host;
}
location ~ ^/(?!api)(.*) {
alias /swelly/static;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment