Heya Folks,
Has anyone succeeded in setting up XWiki using mod_proxy_ajp.
With the default setup you get the following base URL for the wiki:
http://localhost.localdomain:8080/xwiki/bin/view/Main/WebHome
I defined a CNAME for the machine on which xwiki is installed and want to use that as base
URL for the wiki:
http://xwiki.localdomain
The following at least shows the XWiki Installation page, but none of the wiki pages:
<VirtualHost xwiki.lcoaldomain:80>
ServerName xwiki.localdomain
ProxyRequests On
<Proxy
http://xwiki.localdomain/*>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /
http://xwiki.localdomain:8080
ProxyPassReverse /
http://xwiki.localdomain:8080
<Location />
Order allow,deny
Allow from all
</Location>
</VirtualHost>
How to i get this setup so the wiki pages are shown as well?
Mazzel,
Martijn.