Skip to content

Instantly share code, notes, and snippets.

@zmack
Created September 22, 2010 03:10
Show Gist options
  • Save zmack/591066 to your computer and use it in GitHub Desktop.
Save zmack/591066 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name xhtmlized.local;
root /Users/zmack/work/xhtmlized/current;
location / {
ssi on;
}
location /customer/ {
rewrite /customer/(.*)$ /$1 break;
proxy_pass http://customer.dev:9292;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment