home *** CD-ROM | disk | FTP | other *** search
- ##
- ## DAV-Container for the Users of .bmi
- ## Copyright .bmi 2003
- ##
- ## DON'T EDIT THIS FILE !!!
- ##
-
- Alias /dav/USERNAME /var/dav/USERNAME
- <Directory /var/dav/USERNAME>
- Dav On
- DavMinTimeout 120
-
- LimitXMLRequestBody 0
-
- Options All MultiViews
-
- AllowOverride AuthConfig Limit
-
- AuthName "Please authorize yourself..."
- AuthType Basic
-
- Auth_MySQL_Password_Table users
- Auth_MySQL_Username_Field username
- Auth_MySQL_Password_Field password
- Auth_MySQL_Encrypted_Passwords Off
-
- <Limit GET POST PUT DELETE CONNECT OPTIONS PATCH PROPFIND PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
- Order allow,deny
- Allow from all
- Require user USERNAME
- </Limit>
- <LimitExcept GET POST PUT DELETE CONNECT OPTIONS PATCH PROPFIND PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
- Order deny,allow
- Deny from all
- </LimitExcept>
- </Directory>
-