1

I have installed Zimbra on CentOS 6.4. Now I would like to change the path to the admin page from:

https://mail.domain.com:7071/zimbraAdmin/

to https://mail.domain.com/admin/. So can I do this, and how to do?

DinhNgocHien
  • 151
  • 3
  • 8
  • 1
    Port 443 is used by https [mailbox] - web mail client over ssl in zimbra, you can't use the same port for two different application. – Federico Sierra Nov 07 '14 at 03:00
  • I mean replacing the first link by the the second one, not using two link in the same time – DinhNgocHien Nov 07 '14 at 04:10
  • @FedericoSierra well, you can, as long as you adjust jetty.xml - jetty is already serving both WebApps so it's just matter of configuration – yaplik Nov 08 '14 at 21:56

1 Answers1

3

Zimbra (ZCS) is using Jetty as application server with configuration file generated from template and variables. You can either:

a) adjust zimbraAdminPort and zimbraAdminURL

# su - zimbra

$ zmprov
prov> getConfig zimbraMailSSLPort
zimbraMailSSLPort: 443
prov> getConfig zimbraAdminPort
zimbraAdminPort: 7071
prov> getConfig zimbraAdminURL
zimbraAdminURL: /zimbraAdmin

prov> modifyConfig zimbraMailSSLPort 4443
prov> modifyConfig zimbraAdminPort 443
prov> modifyConfig zimbraAdminURL /admin

$ zmmailboxdctl restart

b) or adjust /opt/zimbra/jetty/etc/* with custom ports, path, filters etc. according jetty documentation to suit your needs

yaplik
  • 401
  • 2
  • 3