OK all you Apache gurus, I've got an interesting one for you (or at
least I think it's interesting, anyway).  I'm working on configuring
mod_dav so I can dump ftp.  I can log into the dav-enabled resource via
DAV Explorer, but once there I can't write any files.  Here's an excerpt
from error_log:

-----------------------------------------------------------------
[Mon Aug 13 17:00:44 2001] [notice] Apache/1.3.20 (Unix) DAV/1.0.2
mod_perl/1.26 mod_ssl/2.8.4 OpenSSL/0.9.6b configured -- resuming normal
operations
[Mon Aug 13 17:00:44 2001] [notice] suEXEC mechanism enabled (wrapper:
/usr/bin/suexec)
[Mon Aug 13 17:02:52 2001] [error] [client 168.156.25.11] client denied
by server configuration: /var/www/htdocs/testdav/DAVExp-0.72.tar.gz
-----------------------------------------------------------------

>From httpd.conf:

-----------------------------------------------------------------
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

<Location /testdav/>
    DAV On
    AllowOverride None
    Options None
    <LimitExcept GET HEAD OPTIONS>
        require group authors
        AuthType basic
        AuthUserFile /var/www/passwd/testdav.users
        AuthGroupFile /var/www/passwd/testdav.groups
    </LimitExcept>
</Location>
-----------------------------------------------------------------

The files are owned by www.www which is what Apache is set to run as. 

I think I've got the user & group files set up right:
-----------------------------------------------------------------
[root@minastirith htdocs]# more /var/www/passwd/testdav.*
::::::::::::::
/var/www/passwd/testdav.groups
::::::::::::::
authors:testdav
::::::::::::::
/var/www/passwd/testdav.users
::::::::::::::
testdav:(password removed)
-----------------------------------------------------------------

So I'm not quite sure what I've done wrong, but I appreciate whatever
suggestions you all may have.




_______________________________________________
http://linux.nf -- [EMAIL PROTECTED]
Archives, Subscribe, Unsubscribe, Digest, Etc 
->http://linux.nf/mailman/listinfo/linux-users

Reply via email to