Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

SSLCACertificateFile is a concatenation of client certificates in PEM format (i.e. cat trusted_certs/*.crt > trusted.crt).

DAV Setup

To enable DAV on a specific location (it's not enabled for any directory by default), edit either ssl.conf (or default-ssl for debian) and add the following:

Code Block
        <Location /dav>
                Dav On
        </Location>

If the DAV directory should be accessible over HTTP (NOT advisable) add a similar configuration fragment to httpd.conf.

If the above doesn't work (or the DAV directory isn't placed in the document root, the following can be used instead:

Code Block

Alias /dav/ /path/to/dav/
<Directory /path/to/dav>
  Dav On
</Directory>
Code Block
$ /etc/init.d/apache2 restart # Finally restart apache
or
$ service httpd restart

...