| Robert McDonald 2007-01-10, 1:33 am |
| I am an Apache novice, running apache 2 on debian etch. I have been
trying to get shared calendaring to work and was experimenting with
webdav (following the directions at
http://www.debian-administration.org/articles/285).
The problem is that when I enable the calendar sharing directory, I
break access to phpmyadmin and mythweb:
a2dissite calendar --> mythweb and phpmyadmin work
a2ensite calendar --> mythweb and phpmyadmin do not work
Any pointers would be much appreciated. Here is the configuration file
for calendar:
<VirtualHost *>
ServerAdmin webmaster@localhost
ServerName server1
DocumentRoot /var/www/calendar
<Directory /var/www/calendar>
Options Indexes Multiviews
AllowOverride None
Order allow,deny
allow from all
</Directory>
Alias /webdav /var/www/calendar
<Location /webdav>
DAV on
AuthType Digest
AuthName "webdav-calendar"
AuthUserFile /var/www/digest-password
Require valid-user
</Location>
</VirtualHost>
|