Versions Compared

Key

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

...

Setup the SSL site (on debian /etc/apache2/sites-available/default-ssl) to use the relevant keys and certificates (see Create self signed certificate):

Code Block
         SSLCertificateFile      /path/to/server.crt
         SSLCertificateKeyFile   /path/to/server.key
         SSLVerifyClient   SSLCACertificateFile       /path/to/ca.crtrequire
         SSLVerifyClientSSLVerifyDepth       require   10
     SSLVerifyDepth    SSLCACertificateFile    10
/path/to/trusted.crt

SSLCACertificateFile is a concatenation of client certificates in PEM format.

And DAV:

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

...