Skip to content

Instantly share code, notes, and snippets.

@bpowers
Created April 23, 2012 20:37
Show Gist options
  • Save bpowers/2473680 to your computer and use it in GitHub Desktop.
Save bpowers/2473680 to your computer and use it in GitHub Desktop.
server {
root /usr/share/nginx/www;
index index.html index.htm;
server_name localhost;
location ~ ^/proxy/([0-9a-z]*)/$ {
error_page 404 = @try_slow_path;
proxy_intercept_errors on;
proxy_pass http://localhost:8000;
}
location @try_slow_path {
proxy_pass http://localhost:8001;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment