Forum Moderators: phranque
<Location /bobs>
DAV On
AllowOverride None
Options None
<LimitExcept GET HEAD OPTIONS>
require user bob
</LimitExcept>
</Location>
/bobs is located /var/www/html/bobs
I have WebDav working but when I add LimitExcept it breaks.
Using Fedora2 “latest yum update” mod_dav 1.0.8-1
[webdav.org...]
If this is no good then can you suggest a better way to go about it?
Make sure you have Allow Override all or at a minimum, AllowOverride Limit set in order to allow use of Limit and LimitExcept.
This is the second inconsistency in the document you cited; <LimitExcept> is not supposed to work in a <Location> container, and they say to set AllowOverride None, which would disable the Limit directives...
Maybe someone who knows more about this stuff can be of more help.
Jim
<Location /bobs>
DAV On
AuthType Basic
AuthName "WebDAV Restricted"
AuthUserFile /var/www/html/bobs/.DAVlogin
<LimitExcept GET HEAD OPTIONS>
Require user webdav
</LimitExcept>
</Location>
P.S. any suggestions on how to restrict or track space usage in these directories
Thanks for the help Jim