asked on
NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
ServerName *.mysite.com
DocumentRoot /ebs/websites/default
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /ebs/websites/default/>
Options FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
DirectoryIndex index.cfm index.html
</VirtualHost>
<VirtualHost *:443>
ServerAdmin paul@mysite.com
DocumentRoot /ebs/websites/default
ServerName mysite.com:443
ErrorLog ${APACHE_LOG_DIR}/error.log
SSLEngine on
SSLProxyEngine On
SSLProtocol all
SSLCertificateFile /ebs/websites/ssl/certificate.crt
SSLCertificateKeyFile /ebs/websites/ssl/PrivateKey.key
SSLCertificateChainFile /ebs/websites/ssl/intermediate.crt
ServerPath /default
<Directory /ebs/websites/default/>
Options FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
DirectoryIndex index.cfm index.html
BrowserMatch "MSIE [2-6]" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
# MSIE 7 and newer should be able to use keepalive
BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
</VirtualHost>