Code

http-push: add regression tests
[git.git] / t / lib-httpd / apache.conf
1 PidFile httpd.pid
2 DocumentRoot www
3 ErrorLog error.log
5 <IfDefine SSL>
6 LoadModule ssl_module modules/mod_ssl.so
8 SSLCertificateFile httpd.pem
9 SSLCertificateKeyFile httpd.pem
10 SSLRandomSeed startup file:/dev/urandom 512
11 SSLRandomSeed connect file:/dev/urandom 512
12 SSLSessionCache none
13 SSLMutex file:ssl_mutex
14 SSLEngine On
15 </IfDefine>
17 <IfDefine DAV>
18         LoadModule dav_module modules/mod_dav.so
19         LoadModule dav_fs_module modules/mod_dav_fs.so
21         DAVLockDB DAVLock
22         <Location />
23                 Dav on
24         </Location>
25 </IfDefine>
27 <IfDefine SVN>
28         LoadModule dav_svn_module modules/mod_dav_svn.so
30         <Location /svn>
31                 DAV svn
32                 SVNPath svnrepo
33         </Location>
34 </IfDefine>