I'm looking for a way to share a calendar for different platforms via a Linux Debian server which runs Apache 2.2.16 with WebDAV (mod_dav, mod_dav_fs) support.
So far I use for the basic authentication process for directories. The problem is that the only software which support this authentication method is Thunderbird with the Lightning add-on. Neither Outlook nor the different web-calendars can get access.
The Apache authentication setup looks like that:
<Directory "/var/www/calendar/">
Dav on
ForceType text/plain
Require user test
Options +Indexes
AuthType Basic
AuthName "WebDAV"
AuthUserFile /etc/apache2/htpasswd/calendar.htpasswd
require valid-user
</Directory>
How can I secure the WebDAV with a proper authentication and insure different software support?