source: branches/fc20-dev/server/fedora/config/etc/httpd/vhosts.d/mosh.conf

Last change on this file was 2541, checked in by achernya, 10 years ago
Apache SSL configuration cleanup. Fixes SNI on httpd 2.4
File size: 1.2 KB
Line 
1# do not trailing-slash DocumentRoot
2
3<VirtualHost *:80>
4        ServerName mosh.mit.edu
5        ServerAlias mosh
6        DocumentRoot /afs/sipb.mit.edu/project/mosh/web_scripts
7        Alias /~mosh_project /afs/sipb.mit.edu/project/mosh/web_scripts
8        SuExecUserGroup mosh_project mosh_project
9        Include conf.d/vhosts-common.conf
10</VirtualHost>
11
12<IfModule ssl_module>
13        <VirtualHost *:443>
14                ServerName mosh.mit.edu
15                ServerAlias mosh
16                DocumentRoot /afs/sipb.mit.edu/project/mosh/web_scripts
17                Alias /~mosh_project /afs/sipb.mit.edu/project/mosh/web_scripts
18                SuExecUserGroup mosh_project mosh_project
19                Include conf.d/vhosts-common-ssl.conf
20                SSLCertificateFile /etc/pki/tls/certs/mosh.pem
21                SSLCertificateKeyFile /etc/pki/tls/private/scripts.key
22        </VirtualHost>
23        <VirtualHost *:444>
24                ServerName mosh.mit.edu
25                ServerAlias mosh
26                DocumentRoot /afs/sipb.mit.edu/project/mosh/web_scripts
27                Alias /~mosh_project /afs/sipb.mit.edu/project/mosh/web_scripts
28                SuExecUserGroup mosh_project mosh_project
29                Include conf.d/vhosts-common-ssl.conf
30                Include conf.d/vhosts-common-ssl-cert.conf
31                SSLCertificateFile /etc/pki/tls/certs/mosh.pem
32                SSLCertificateKeyFile /etc/pki/tls/private/scripts.key
33        </VirtualHost>
34</IfModule>
Note: See TracBrowser for help on using the repository browser.