I have a bit of an odd situation. I have a server that I need to set up behind a router (without DMZ). I need to use a combination of port forwarding (on the router) and mod_rewrite, or mod_proxy (not sure which) on the server.
Ultimately I want to have everything from router port 8080 forwarded to the server port 80. However, any requests that come to the server need to respond to a rewrite command for various applications running on different ports on the server. For example:
http://external.ip.address:8080/WEBMIN -> GOES TO -> http://internal.server.address:80/WEBMIN -> WHICH IS REWRITTEN TO -> http://internal.server.address:10000
http://external.ip.address:8080/SALESAPP -> GOES TO -> http://internal.server.address:80/SALESAPP -> WHICH IS REWRITTEN TO -> http://internal.server.address:4004
Is there any way to do this without the router needing to be configured for every port and without actually DMZing the server?
Best.