brpaz
10/28/2014 - 10:32 PM

#nginx #proxy

#nginx #proxy

location /some/path/ {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_pass http://localhost:8000;
}

http://nginx.com/resources/admin-guide/reverse-proxy/