Quote:
|
Originally Posted by phoenix Does this page point you in the right direction? |
Hi Bill.
Not really. I'm not really concerned with having my Apache server do anything else, really. The httpd.conf example they use could help a little, but there they're trying to do something different.
I figure my httpd.conf file should look something like this:
(Where my Zimbra server name is "
zimbra" and the network that my firewall protects is "
network")
Code:
<VirtualHost *:80>
ServerName zimbra.mydomain.com
DocumentRoot /im/not/sure
RewriteEngine on
RewriteCond [something that specifies != network]
RewriteRule ^/(.*)$ https://mail.mydomain.com/$1 [L,QSA]
</VirtualHost>
Does that help you get a jumping off point?
-Dana