Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

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>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.