King0770-Notes-Disable-Zimbra-Desktop: Difference between revisions

No edit summary
No edit summary
Line 6: Line 6:


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


Add below after http_cookie if block.<br>  
Add below after http_cookie if block.<br>  

Revision as of 16:35, 27 November 2018

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 
Jump to: navigation, search