How to reverse proxy admin console using nginx?

Discuss your pilot or production implementation with other Zimbra admins or our engineers.
Post Reply
sugiggs
Advanced member
Advanced member
Posts: 92
Joined: Sat Sep 13, 2014 12:42 am

How to reverse proxy admin console using nginx?

Post by sugiggs »

Hi all,
Previously I'm using Apache + mod_proxy to hide our mailbox server. After upgrading to 7.2, the admin console part starts giving us problem. Sometimes the admin console doesn't load properly.
Now I'm testing nginx as our reverse proxy but the portal is stuck at splash screen after I logged in.
Any idea the correct nginx setting for Zimbra Admin Console?


server {

server_name test.net;

listen test.net:7071;

ssl on;

ssl_certificate /etc/nginx/ssl/test.net/commercial.crt;

ssl_certificate_key /etc/nginx/ssl/test.net/server.key;

location / {

proxy_pass https://mailbox.test.net:7071/;

proxy_set_header Host $http_host;

proxy_set_header X_FORWARDED_PROTO https;

}

}

drzoidberg
Posts: 5
Joined: Fri May 13, 2016 12:06 pm

Re: How to reverse proxy admin console using nginx?

Post by drzoidberg »

Any progress here?
Post Reply