gnu-arch-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnu-arch-users] webdav take 2


From: Eric S. Johansson
Subject: [Gnu-arch-users] webdav take 2
Date: Wed, 14 Apr 2004 10:54:52 -0400
User-agent: Mozilla Thunderbird 0.5 (Windows/20040207)

closer to fine.

#
# Broken WebDAV for Windows XP and Mac OS X
#
BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
BrowserMatch "Microsoft-WebDAV-MiniRedir/5.1.2600" redirect-carefully
BrowserMatch "^WebDrive" redirect-carefully
BrowserMatch "^WebDAVFS" redirect-carefully

# The top level DAV directory
# Here we turn DAV on, allow web browser access, and enable only read
# operations. The application realm name can be called anything that pertains to your application..

Alias /test /var/webdav/test

<Directory "/var/webdav/test">
  AllowOverride None
  AuthType Digest
  AuthName "privaloo"
  AuthDigestDomain /test
  AuthDigestFile /var/webdav/users-digest

  DAV On
  Order allow,deny
#Example of a default read only access for general user community.
#You can handle the rest of authorization through .htaccess files.
  Allow from all
  Options Indexes FollowSymLinks

    <Limit HEAD GET POST OPTIONS PROPFIND>
        Allow from all
    </Limit>
    <Limit MKCOL PUT DELETE LOCK UNLOCK COPY MOVE PROPPATCH>
       Allow from all
      require valid-user
    </Limit>

</Directory>






reply via email to

[Prev in Thread] Current Thread [Next in Thread]