Versions Compared

Key

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

...

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
        Alias /dav/ /var/www/dav/

        <Location /dav>
                Dav On
        </Location>

The alias is needed since the directory is outside of the document root.

If the DAV directory should be accessible over HTTP (NOT advisable) add a similar configuration fragment to httpd.conf (or sites-enabled/000-default for debian).

...