Date: Sun, 26 Dec 2004 20:26:31 -0600 From: Paul Querna <chip@force-elite.com> To: Timothy Luoma <lists@tntluoma.com> Cc: apache@FreeBSD.org Subject: Re: Setting up an iDisk using WebDAV Message-ID: <41CF72D7.3090901@force-elite.com> In-Reply-To: <1FA5E2DA-57AD-11D9-8DCA-000D93AD26C8@tntluoma.com> References: <1FA5E2DA-57AD-11D9-8DCA-000D93AD26C8@tntluoma.com>
next in thread | previous in thread | raw e-mail | index | archive | help
This is the problem: > <Directory "/home/idisk"> > Dav on > AuthType Digest > AuthName iTools > AuthDigestDomain "/" > AuthDigestFile /usr/local/www/WebDavUsers > > <LimitExcept GET OPTIONS> > require valid-user > </LimitExcept> > </Directory> Try this: <Directory "/home/idisk"> Order Deny,Allow Deny from none Allow from all Dav on AuthType Digest AuthName iTools AuthDigestDomain "/" AuthDigestFile /usr/local/www/WebDavUsers <LimitExcept GET OPTIONS> require valid-user </LimitExcept> </Directory> In the future, please look in the error log. It will tell you if it is file permissions or a configuration error. Since you said the file permissions are correct, I believe you are missing an allow from all statement. -Paul Querna
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?41CF72D7.3090901>