King0770-Notes-Disable-Zimbra-Desktop

Revision as of 22:27, 5 December 2018 by King0770 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Scenario

Disable Zimbra Desktop access for your users

Add user_agent check in nginx web template files to block ZD access, proxy restart is required to generate nginx include files.

Directory - /opt/zimbra/conf/nginx/templates
Files to change - nginx.conf.web.http.template and nginx.conf.web.https.template

Add below after http_cookie if block.

if ($http_user_agent ~* "Zimbra Desktop") { 
return 403; 
} 

Restart Proxy service

zmproxyctl restart 


More articles written by me, https://wiki.zimbra.com/wiki/King0770-Notes

Jump to: navigation, search