I have zimbra running successfully over reverse proxy with the sole exception of the notebooks pages, for which I get 404 errors.
It seems that whereas everything else is happily noticing that the BASE URL is different, the notebooks are not.
The webclient displays a nice 404 page instead of list of my notebooks. The desktop at least gets a list of notebooks but fails to save them.
Is there a setting I've missed somewhere? Or is this a bug?
I suspect it's a bug, since notebooks also fail when I tunnel to the server through SSH.
Anyone seen this before? There doesn't seem to be anything about it in bugzilla.
My apache reverse proxy config looks like this:
HTML Code:
<Location "/service">
ProxyPass http://xxx.xxx.xxx.xxx/service
ProxyPassReverse http://xxx.xxx.xxx.xxx/service
ProxyPassReverse /
SetOutputFilter proxy-html
ProxyHTMLExtended On
ProxyHTMLURLMap /service /service
RequestHeader unset Accept-Encoding
</Location>
<Location "/zimbra">
ProxyPass http://xxx.xxx.xxx.xxx/zimbra
ProxyPassReverse http://xxx.xxx.xxx.xxx/zimbra
ProxyPassReverse /
ProxyHTMLExtended On
SetOutputFilter proxy-html
ProxyHTMLURLMap /zimbra /zimbra
RequestHeader unset Accept-Encoding
</Location>