I have got the following configuration for my apache webserver (httpd.conf):
...
Listen 80
Listen 8082
...
<VirtualHost *:80>
ProxyPass / ajp://localhost:8009/
ProxyPassReverse / ajp://localhost:8009/
</VirtualHost>
<VirtualHost *:8082>
ProxyPass / ajp://localhost:8010/
ProxyPassReverse / ajp://localhost:8010/
</VirtualHost>
The ports 8009 and 8010 are used by two tomcat instances. All three are up and running. However, I'm only able to access the content on port 80. When I try to access the content on port 8082 I get the following error:
503 Service Temporarily Unavailable - The server is temporarily unable to service your request due to maintenance downtime or capacity problems.
Do you have any ideas? Maybe I'm searching at the wrong spot.