I'm having the same issue as this SO question, but with nginx and CherryPy. I am trying to allow clients to access 192.168.0.4:80/otherpath through GET requests made to 192.168.0.3:80/forward, where 192.168.0.3 is a host running nginx and CherryPy. nginx should perform the redirection. Requests to all other URLs served by 192.168.0.3 should be satisfied by the local CherryPy.
I adapted a suggested nginx config by Andrew Kloos:
server {
listen 80;
server_name 192.168.0.3;
root /;
location /forward {
proxy_pass http://192.168.0.4:80/;
proxy_set_header X-Real-IP $remote_addr;
}
}
which performs the forwarding as required. What configuration is required to direct other requests to a local CherryPy server, and how would CherryPy need to be running to accomodate this? I think this may be verging on a ServerFault question.