I am using the complex version of the mod_proxy method to create subdomains of my main domain for JIRA and Confluence, however when I got to the subdomains they show as if they are parked on the primary www.* domain. Below is the proxy information I am passing via the httpd.conf:
<VirtualHost *>
ServerName jira.darkprospect.net
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
ProxyHTMLURLMap / /
<Location />
Order allow,deny
Allow from all
</Location>
</VirtualHost>
<VirtualHost *>
ServerName wiki.darkprospect.net
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://localhost:8090/confluence
ProxyPassReverse / http://localhost:8090/confluence
ProxyHTMLURLMap / /confluence/
<Location />
Order allow,deny
Allow from all
</Location>
</VirtualHost>