blob: f01ccfbbd0417ed8e6a09b033b075bf55792456b (
plain)
- <VirtualHost *:443>
- ServerName mail.example.com:443
- ServerAdmin webmaster@example.com
- DocumentRoot /home/webmaster/public_websites/mail.example.com/
- Include conf.d/local-ssl.conf
- Include conf.d/local-php.conf
- Include conf.d/local-horde3.conf
- ErrorLog ${APACHE_LOG_DIR}/mail.example.com-error.log
- CustomLog ${APACHE_LOG_DIR}/mail.example.com-access.log combined
- </VirtualHost>
- <VirtualHost *:443>
- ServerName www.mail.example.com:443
- ServerAlias *.mail.example.com:443
- ServerAlias mail:443
- ServerAlias *.mail:443
- Include conf.d/local-ssl.conf
- Include conf.d/local-log-origin.conf
- RewriteEngine On
- RewriteRule / https://mail.example.com/ [R]
- # RewriteRule /(.*) https://mail.example.com/$1 [R]
- CustomLog ${APACHE_LOG_DIR}/redirect.log origin
- </VirtualHost>
- <VirtualHost *:80>
- ServerName mail.example.com
- ServerAlias *.mail.example.com
- ServerAlias mail
- ServerAlias *.mail
- Include /etc/apache2/conf.d/local-log-origin.conf
- RewriteEngine On
- RewriteRule / https://mail.example.com/ [R]
- # RewriteRule /(.*) https://mail.example.com/$1 [R]
- CustomLog ${APACHE_LOG_DIR}/redirect.log origin
- </VirtualHost>
|