source: vhosts/conf.d/presbrey.conf @ 244

Last change on this file since 244 was 244, checked in by andersk, 17 years ago
Include common config files vhosts-common.conf and vhosts-common-ssl.conf from every VirtualHost block, and set KeepAlive off on all SSL vhosts (to work around the infamous LVS+MediaWiki+SSL problem).
File size: 943 bytes
Line 
1<VirtualHost *:80>
2        ServerName presbrey.mit.edu
3        DocumentRoot /afs/athena.mit.edu/user/p/r/presbrey/web_scripts
4        SuExecUserGroup presbrey presbrey
5        Include conf.d/vhosts-common.conf
6</VirtualHost>
7
8<IfModule ssl_module>
9        <VirtualHost *:443>
10                ServerName presbrey.mit.edu
11                DocumentRoot /afs/athena.mit.edu/user/p/r/presbrey/web_scripts
12                SuExecUserGroup presbrey presbrey
13                Include conf.d/vhosts-common-ssl.conf
14        </VirtualHost>
15</IfModule>
16
17<VirtualHost *:80>
18        ServerName scripts.presbrey.net
19        DocumentRoot /afs/athena.mit.edu/user/p/r/presbrey/web_scripts/sites/scripts.presbrey.net
20        SuExecUserGroup presbrey presbrey
21        Include conf.d/vhosts-common.conf
22</VirtualHost>
23
24<IfModule ssl_module>
25        <VirtualHost *:443>
26                ServerName scripts.presbrey.net
27                DocumentRoot /afs/athena.mit.edu/user/p/r/presbrey/web_scripts/sites/scripts.presbrey.net
28                SuExecUserGroup presbrey presbrey
29                Include conf.d/vhosts-common-ssl.conf
30        </VirtualHost>
31</IfModule>
Note: See TracBrowser for help on using the repository browser.