Mandy Singh wrote:
The only other question that partially remains unanswered is that if I run apacheN on port 80 (and access my site as http://mysite.com) and run apacheN+1 on port 8080 (and access site as http://mysecondsite.com:8080) - what can i do special to access http://mysecondsite.com:8080 without the port number (as if it was running on port 80). Did you get what I was trying to say? Is this a legtimate question? :)

The alternative to reverse proxy is to have each apache listen on a different IP address and have different DNS entries for each site. This way they are completely isolated (no dependancy on the master instance for reverse proxy).

In 1st apache:

 # Listen 80
# by default, if no address is specified in Listen, apache will bind INADDR_ANY (which is 0.0.0.0 and means all addresses)
 Listen 1.2.3.4:80

In 2nd apache:

 Listen 1.2.3.5:80


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to