Page 1 of 1

Zimbra Proxy

Posted: Fri Jun 03, 2016 1:23 pm
by mclain
Can someone please send me link or explanation of what changes I need to make to set up zimbra proxy for zimbra talk to work.

Re: Zimbra Proxy

Posted: Fri Jun 03, 2016 8:43 pm
by skflone
Hello .

First you need to undertand that your actual Zimbra Colaboration Server , should have the service : PROXY available.

What changes :

Only edit this file : /opt/zimbra/conf/nginx/templates/nginx.conf.web.https.default.template

and add this text:
location ^~ /VNCMiddleware
{
proxy_cache off;
proxy_read_timeout 500s;
proxy_pass_header Cookie;
proxy_pass http://$TalkServerIP:8080/VNCMiddleware;
}
#For long polling of Microsoft ActiveSync


-------------------

Then restart the zmcontrol from your server .

Please read documentation : https://wiki.zimbra.com/wiki/How_to_Install_Zimbra_Talk

Re: Zimbra Proxy

Posted: Mon Aug 22, 2016 6:42 am
by Mayty
skflone wrote:Hello .

First you need to undertand that your actual Zimbra Colaboration Server , should have the service : PROXY available.

What changes :

Only edit this file : /opt/zimbra/conf/nginx/templates/nginx.conf.web.https.default.template

and add this text:
location ^~ /VNCMiddleware
{
proxy_cache off;
proxy_read_timeout 500s;
proxy_pass_header Cookie;
proxy_pass http://$TalkServerIP:8080/VNCMiddleware;
}
#For long polling of Microsoft ActiveSync


-------------------

Then restart the zmcontrol from your server .

Please read documentation : https://wiki.zimbra.com/wiki/How_to_Install_Zimbra_Talk
Oh, thank you! I just had questions about the proxy and immediately able to know the answer, everything is configured correctly.