[CentOS] Fwd: xwiki vhost in apache

Paul Heinlein heinlein at madboa.com
Sun Apr 6 14:47:53 UTC 2008


On Sat, 5 Apr 2008, David Hláčik wrote:

> Hi, i am just wondering. I have a tomcat5, running xwiki at 
> http://myserver.example.org:8080/xwiki  How can i create a vhost in 
> httpd to do transparent proxy to tomcat5 webapplication ?

<VirtualHost *:80>
   ServerName  whatever.you.want
   RedirectMatch permanent '^//*$' /xwiki/
   ProxyRequests Off
   ProxyPass        /xwiki  http://myserver.example.org:8080/xwiki
   ProxyPassReverse /xwiki  http://myserver.example.org:8080/xwiki
   <Proxy *>
     Order deny,allow
     Allow from all
   </Proxy>
</VirtualHost>

Note: make sure that mod_proxy and mod_proxy_http are loaded somewhere 
along the line.

-- 
Paul Heinlein <> heinlein at madboa.com <> www.madboa.com


More information about the CentOS mailing list