Hi I have the main apache running on port 80. I built another configuration file to have another apache running on port 8094.
I can access both servers: http://host http://host:8094 Now I want to have http://MySecondAlias to redirect to http://host:8094 I added MySecondAlias to DNS and I added these lines in the main apache config NameVirtualHost *:80 <VirtualHost *:80> ServerName MySecondAlias ProxyPass / http://localhost:8094/ ProxyPassReverse / http://localhost:8094/ </VirtualHost> Now http://host redirects to http://MySecondAlias and I do not want this. How to fix this situation? I.e Http://host goes to the default apache http://MySecondAlias goes to the 2nd apache running on 8094 any other alternative is also welcomed. thanks --------------------------------------------------------------------- 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: users-unsubscr...@httpd.apache.org " from the digest: users-digest-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org