t / lib-httpd / apache.confon commit Fix behavior with non-commit upstream references (57ffc5f)
   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 Darwin>
   9        LoadModule log_config_module modules/mod_log_config.so
  10        LockFile accept.lock
  11        PidFile httpd.pid
  12</IfDefine>
  13
  14<IfDefine SSL>
  15LoadModule ssl_module modules/mod_ssl.so
  16
  17SSLCertificateFile httpd.pem
  18SSLCertificateKeyFile httpd.pem
  19SSLRandomSeed startup file:/dev/urandom 512
  20SSLRandomSeed connect file:/dev/urandom 512
  21SSLSessionCache none
  22SSLMutex file:ssl_mutex
  23SSLEngine On
  24</IfDefine>
  25
  26<IfDefine DAV>
  27        LoadModule dav_module modules/mod_dav.so
  28        LoadModule dav_fs_module modules/mod_dav_fs.so
  29
  30        DAVLockDB DAVLock
  31        <Location />
  32                Dav on
  33        </Location>
  34</IfDefine>
  35
  36<IfDefine SVN>
  37        LoadModule dav_svn_module modules/mod_dav_svn.so
  38
  39        <Location /svn>
  40                DAV svn
  41                SVNPath svnrepo
  42        </Location>
  43</IfDefine>