<?xml version='1.0' encoding='iso-8859-1'?>

<!--
 ! Default/example configuration file for the web frontend
 !
 ! You will *have* to modify this to match your system.
 !
 !-->
<config>

  <log>
    <!--
     ! Multiple targets can be specified.
     ! "type" may be one of "file" ('dest' specifies filename),
     ! "syslog" ('dest' specifies facility), "stdout" and "stderr".
     ! "format" may be one of "line", "plain" and "xml"
     !
     ! A file name in the "dest" attribute may be parameterized
     ! (printf-style):
     !  * '%d' => current date (YYYY-MM-DD),
     !  * '%p' => current process id,
     !  * '%h' => hostname,
     !  * '%t' => current time (%H:%M:%S)
     !-->
    <target kind='file' dest='tmp/test/log-UnitTest-general'
            format='line'
            errors='true' warnings='true' notices='true' debug='true'/>
    <target kind='file'  dest='tmp/test/log-UnitTest-bugs.xml'
            format='xml'
            bug='true'/>
    <target kind='file'  dest='tmp/test/log-UnitTest-access'
            format='line'
            access='true'/>
  </log>

  <net>
    <!-- @host has to be an IP adress (or "0.0.0.0" or empty)! -->
    <listen host='127.0.0.1' port='2005'/>
    <ssl enable='false'>
      <certificate>share/dsadmin/ssl/test-webfe-cert.pem</certificate>
      <!--ca-certificate>share/dsadmin/ssl/test-webfe-cacert.pem</ca-certificate-->
      <private-key>share/dsadmin/ssl/test-webfe-privkey.pem</private-key>
    </ssl>
  </net>

  <admind>
    <host>localhost</host>
    <port>4712</port>
  </admind>


  <globaldefs>
    <paths>
      <web.docroot>
        <path>public</path>
      </web.docroot>
    </paths>

    <!--Name of the group that gets unrestricted access to dsadmin -->
    <group.superuser>staff</group.superuser>
  </globaldefs>


  <!--
   ! Machine specific resources used and partially shared by the modules
   !-->
  <resources>
    <!--
     ! Paths of commonly used resources. Relative paths are relative to
     ! $INSTALL_DIR
     !-->
    <urls>
      <mirrors.http>http://mirrors.dotsrc.org/</mirrors.http>
      <mirrors.ftp>ftp://mirrors.dotsrc.org/</mirrors.ftp>
    </urls>
  </resources>

</config>