Versions Compared

Key

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

...

Install Apache2, mod_ssl and mod_dav if not pre-installed.

Debian based systems
Code Block
$ a2enmod dav dav_fs dav_lock # Enable DAV
$ mkdir /path/to/www/dav      # Create directory for DAV
$ chown www-data:wwwdata /path/to/www/dav

$ a2enmod ssl                 # Enable SSL
$ a2ensite default-ssl        # Enable SSL site

...

Code Block
$ /etc/init.d/apache2 restart # Finally restart apache
Redhat

As with Debian, except some things are done differently, see here.

References:
Apache SSL/TLS Encryption
Apache Module mod_dav

...