I want to set up an upload site - HTTPS upload site
Kurt Granroth
plug-discuss at granroth.org
Sun Apr 29 19:38:32 MST 2007
Bryan O'Neal wrote:
> Wow webdev does seem easy! But using .htaccess files gives me a ...
> /webdav/.htaccess: DAV not allowed here
Hmm... I haven't used .htaccess files with WebDAV but I *have* used
htpasswd. Basically, I created my users thusly:
htpasswd2 -c /etc/apache2/dav/dav_users.db <username>
And then I added these lines to the conf:
AuthType Basic
AuthName "WebDAV Server"
AuthUserFile /etc/apache2/dav/dav_users.db
<LimitExcept GET OPTIONS>
Require valid-user
</LimitExcept>
Order allow,deny
Allow from all
Kurt
More information about the PLUG-discuss
mailing list