Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Table of Contents

 

Create WebDAV to Publish Calendars

  1. Enable WebDAV 

    Code Block
    themeEmacs
    languagebash
    a2enmod dav
    a2enmod dav_fs
  2. Create File System 

    Code Block
    themeEmacs
    languagebash
    mkdir /home/sites/www/webdav
    chown www-data:www-data /home/sites/www/webdav
  3. Set Up Password Protection 

    Code Block
    themeEmacs
    languagebash
    htpasswd -c /etc/apache2/webdav.password username
    chown root:www-data /etc/apache2/webdav.password
    chmod 640 /etc/apache2/webdav.password
  4. Configure Apache 

    Code Block
    themeEmacs
    languagehtml/xml
    nano /etc/apache2/sites-available/default
    <Location /webdav>
        Options Indexes
        DAV On
        AuthType Basic
        AuthName "webdav"
        AuthUserFile /etc/apache2/webdav.password
        Require valid-user
    </Location>
  5.