Setting up an iDisk using WebDAV

Paul Querna chip at force-elite.com
Sun Dec 26 18:26:35 PST 2004


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


More information about the freebsd-apache mailing list