Is there a way to configure Apache and WebDAV so that uploading requires a password but anyone can read from the directory using a browser?
On Tue, 25 Apr 2006, Chris Mason (Lists) wrote:
Is there a way to configure Apache and WebDAV so that uploading requires a password but anyone can read from the directory using a browser?
I've never done it exactly that way, but I'd guess the config would look something like this:
<Directory "/srv/webdav"> DAV on <LimitExcept GET HEAD OPTIONS PROPFIND> AuthType ... Require valid-user </LimitExcept> </Directory>