I am trying to setup httpd.conf properly but regardless of the sub-domain/domain combo below, they all resolve to the same internal URL.
<Proxy *>
Order Allow,Deny
Allow from all
</Proxy>
ProxyRequests Off
<VirtualHost *:80>
Servername jira.firstfactoryinc.com
ProxyPreserveHost On
ProxyPass / http://localhost:8082/
ProxyPassReverse / http://localhost:8082/
</VirtualHost>
<VirtualHost *:80>
Servername jira.submitpatientforms.com
ProxyPreserveHost On
ProxyPass / http://localhost:8081/
ProxyPassReverse / http://localhost:8081/
</VirtualHost>
<VirtualHost *:80>
Servername mddev-jira.firstfactoryinc.com
ProxyPreserveHost On
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
</VirtualHost>
What am I doing wrong?