Provide HTTP(s) Integration with Apache: Difference between revisions

mNo edit summary
Line 48: Line 48:
* Ensure Zimbra is running on port 81
* Ensure Zimbra is running on port 81


<code><pre>sudo su - zimbra</pre></code>
<code>
<pre>sudo su - zimbra</pre>
<pre>zm
</code>
 
n.b. [http://www.zimbra.com/forums/administrators/7986-change-zimbra-webmail-port-number.html a more detailed thread here]


===Step 2===
===Step 2===
* Create a new apache configuration file to contain our virtualhosts
* Create a new apache configuration file to contain our virtualhosts

Revision as of 02:19, 18 February 2008

Setting up HTTP and HTTPS support through Apache VirtualHosts

Scenario

Single production server, with public IP address running apache web server hosting multiple virtual domains, and Zimbra Groupware server to providing email and webmail access to users in multiple virtual domains.

The example domain used in this article is 'server.com' - replace with your own domain.

Aims

  • You want to provide both http (insecure) and https (secure) access to clients through the webmail interface.
  • The Apache server listens on default ports 80 and 443, the Zimbra server listens on port 81 and uses the insecure login authentication method (zmtlsctl http).

System Requirements

Time To Implement

Outside of meeting the system requirements, and reading this article through - the actual coding will take between 5-15 minutes depending on how familiar you are with the Linux command-line and the Zimbra server.

Advice

The article has been written by community members, Zimbra administrators and experienced coders - the proof reading may not be perfect and aims to provide ideas and an exampe of a successful working practice.

Please feel free to use the Zimbra Forums to request more specific help, follow the article closely and do not rush - it will only take longer !!

Laying the foundations

Plan of Action

  • Configure Zimbra to run on port 81.
  • Configure Zimbra to use simple http authentication.
  • Install a new virtual host to catch all webmail.server.com requests.
  • Install a new virtual host to catch all secure webmail.server.com requests.

Step 1

  • Ensure Zimbra is running on port 81

sudo su - zimbra
zm


n.b. a more detailed thread here

Step 2

* Create a new apache configuration file to contain our virtualhosts
Jump to: navigation, search