Mixed VirtualDocumentRoot and VirtualHost directives

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I have a very stable server that's been happily running a number of name-based virtual hosts with nothing more than:

UseCanonicalName Off
VirtualDocumentRoot /var/www/html/%0

This responds correctly to www.example.com, example.com, example.net and anything else defined in the VirtualDocumentRoot directories.

However now I'm running YaCY (P2P web search) which listens on port 8090 and does not exist as a location in the filesystem, and I'd like Apache to proxy all requests for search.example.com to 127.0.0.1:8090.

I've tried adding the code below, however this breaks the VirtualDocumentRoot and the server no longer serves the other virtualhosts.


<VirtualHost *:80>
        ServerName search.example.com
        ServerAdmin webmaster@xxxxxxxxxxx

        ProxyRequests Off

        <Proxy *>
                Order deny,allow
                Allow from all
        </Proxy>

        ProxyPass / http://127.0.0.1:8090/
        ProxyPassReverse / http:/127.0.0.1:8090/
</VirtualHost>


Anybody have any suggestions?

Thanks!

Terry







---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx
For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx



[Index of Archives]     [Open SSH Users]     [Linux ACPI]     [Linux Kernel]     [Linux Laptop]     [Kernel Newbies]     [Security]     [Netfilter]     [Bugtraq]     [Squid]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]

  Powered by Linux