source: trunk/server/fedora/config/etc/httpd/vhosts.d/finance.blue-sun-corp.com.conf @ 1950

Last change on this file since 1950 was 1768, checked in by geofft, 13 years ago
Rename current scripts.key to scripts-1024.key. * httpd.conf: Default to scripts-1024.key for now. * Blue Sun vhosts: Refer to scripts.key instead of scripts-new.key. * reify-vhost: Add SSLCertificateKeyFile scripts.key for now for newly-reified vhosts, and a comment about what we're doing.
File size: 1.2 KB
Line 
1# do not trailing-slash DocumentRoot
2
3<VirtualHost *:80>
4        ServerName finance.blue-sun-corp.com
5
6        DocumentRoot /afs/sipb.mit.edu/contrib/blue-sun/web_scripts/finance
7        Alias /~blue-sun /afs/sipb.mit.edu/contrib/blue-sun/web_scripts
8        SuExecUserGroup blue-sun blue-sun
9        Include conf.d/vhosts-common.conf
10</VirtualHost>
11
12<IfModule ssl_module>
13        <VirtualHost *:443>
14                ServerName finance.blue-sun-corp.com
15               
16                DocumentRoot /afs/sipb.mit.edu/contrib/blue-sun/web_scripts/finance
17                Alias /~blue-sun /afs/sipb.mit.edu/contrib/blue-sun/web_scripts
18                SuExecUserGroup blue-sun blue-sun
19                Include conf.d/vhosts-common-ssl.conf
20                SSLCertificateFile /etc/pki/tls/certs/blue-sun-corp.com.pem
21                SSLCertificateKeyFile /etc/pki/tls/private/scripts.key
22        </VirtualHost>
23        <VirtualHost *:444>
24                ServerName finance.blue-sun-corp.com
25               
26                DocumentRoot /afs/sipb.mit.edu/contrib/blue-sun/web_scripts/finance
27                Alias /~blue-sun /afs/sipb.mit.edu/contrib/blue-sun/web_scripts
28                SuExecUserGroup blue-sun blue-sun
29                Include conf.d/vhosts-common-ssl.conf
30                Include conf.d/vhosts-common-ssl-cert.conf
31                SSLCertificateFile /etc/pki/tls/certs/blue-sun-corp.com.pem
32                SSLCertificateKeyFile /etc/pki/tls/private/scripts.key
33        </VirtualHost>
34</IfModule>
Note: See TracBrowser for help on using the repository browser.