Hi,
I'm looking into a way of doing proper port redirection in windows.
What I have:
I have a router that will redirect all incoming port 80 to a specific IP. I will receive all kind of requests in port 80.
Example:
svn.mydomain.com:80 (subversion server)
www.mydomain.com:80 (webserver)
With this I'm trying to use port 80 for all connections, since I can remotely be behind a proxy that only allows http port 80 requests.
So now in my server, the router forwards all port 80 requests to the right computer ... then I need to configure the server, so that requests from "svn.mydomain.com" are instead forward to port "8080" and requests from "www.mydomain.com" are forward to port "8081" (for example).
So port 8080 will answer the SVN server, and port 8081 will answer a JBoss server.
What is the best way of doing it?
I thought maybe Apache Http Server? Can he do it? Or is there a simpler way?
I've never dealt with Apache Http Server before, so no experience on configuring it ...
Thanks
I'm looking into a way of doing proper port redirection in windows.
What I have:
I have a router that will redirect all incoming port 80 to a specific IP. I will receive all kind of requests in port 80.
Example:
svn.mydomain.com:80 (subversion server)
www.mydomain.com:80 (webserver)
With this I'm trying to use port 80 for all connections, since I can remotely be behind a proxy that only allows http port 80 requests.
So now in my server, the router forwards all port 80 requests to the right computer ... then I need to configure the server, so that requests from "svn.mydomain.com" are instead forward to port "8080" and requests from "www.mydomain.com" are forward to port "8081" (for example).
So port 8080 will answer the SVN server, and port 8081 will answer a JBoss server.
What is the best way of doing it?
I thought maybe Apache Http Server? Can he do it? Or is there a simpler way?
I've never dealt with Apache Http Server before, so no experience on configuring it ...
Thanks