source: trunk/packages/sipb-xen-www/files/etc/apache2/sites-available/svn @ 526

Last change on this file since 526 was 526, checked in by price, 16 years ago

make web hostname canonicalize as xvm, not sipb-xen-dev

File size: 838 bytes
Line 
1<VirtualHost *:1111>
2        ServerAdmin xvm@mit.edu
3        ServerName xvm.mit.edu:1111
4       
5        <Directory />
6                Options FollowSymLinks
7                AllowOverride None
8        </Directory>
9        <Location />
10                DAV svn
11                SVNPath /afs/sipb.mit.edu/project/xvm/svn
12                AuthType Basic
13                AuthName "xvm.mit.edu subversion repository"
14                AuthUserFile /etc/apache2/dav_svn.passwd
15                <LimitExcept GET PROPFIND OPTIONS REPORT>
16                        Require valid-user
17                </LimitExcept>
18        </Location>
19
20        ErrorLog /var/log/apache2/error.log
21
22        # Possible values include: debug, info, notice, warn, error, crit,
23        # alert, emerg.
24        LogLevel warn
25
26        CustomLog /var/log/apache2/ssl_access.log combined
27        ServerSignature On
28
29        SSLEngine on
30
31        SSLCertificateFile ssl/server.crt
32        SSLCertificateKeyFile ssl/server.key
33       
34        SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
35</VirtualHost>
Note: See TracBrowser for help on using the repository browser.