t / lib-httpd / apache.confon commit Merge branch 'bs/maint-rename-populate-filespec' (2b5189e)
   1ServerName dummy
   2PidFile httpd.pid
   3DocumentRoot www
   4LogFormat "%h %l %u %t \"%r\" %>s %b" common
   5CustomLog access.log common
   6ErrorLog error.log
   7
   8<IfDefine SSL>
   9LoadModule ssl_module modules/mod_ssl.so
  10
  11SSLCertificateFile httpd.pem
  12SSLCertificateKeyFile httpd.pem
  13SSLRandomSeed startup file:/dev/urandom 512
  14SSLRandomSeed connect file:/dev/urandom 512
  15SSLSessionCache none
  16SSLMutex file:ssl_mutex
  17SSLEngine On
  18</IfDefine>
  19
  20<IfDefine DAV>
  21        LoadModule dav_module modules/mod_dav.so
  22        LoadModule dav_fs_module modules/mod_dav_fs.so
  23
  24        DAVLockDB DAVLock
  25        <Location />
  26                Dav on
  27        </Location>
  28</IfDefine>
  29
  30<IfDefine SVN>
  31        LoadModule dav_svn_module modules/mod_dav_svn.so
  32
  33        <Location /svn>
  34                DAV svn
  35                SVNPath svnrepo
  36        </Location>
  37</IfDefine>