Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.