fixes #13
This commit is contained in:
parent
6ba18711b7
commit
739b3cac94
1 changed files with 10 additions and 10 deletions
20
INSTALL
20
INSTALL
|
@ -42,6 +42,16 @@ The following apache configuration file snippet shows the configuration of a !Vi
|
|||
AllowOverride AuthConfig Indexes
|
||||
Order Allow,Deny
|
||||
allow from all
|
||||
|
||||
AuthType Digest
|
||||
AuthName "WebDAV on davhost.example.com"
|
||||
AuthDigestDomain /dav/
|
||||
|
||||
AuthDigestProvider file
|
||||
AuthUserFile /var/www/auth/dav.htdigest
|
||||
AuthGroupFile /var/www/auth/dav.groups
|
||||
|
||||
require valid-user
|
||||
</Directory>
|
||||
|
||||
<Location /davadmin>
|
||||
|
@ -56,16 +66,6 @@ The following apache configuration file snippet shows the configuration of a !Vi
|
|||
require valid-user
|
||||
</Location>
|
||||
|
||||
<Location /dav/>
|
||||
AuthType Digest
|
||||
AuthName "WebDAV on davhost.example.com"
|
||||
AuthDigestDomain /dav/
|
||||
|
||||
AuthDigestProvider file
|
||||
AuthUserFile /var/www/auth/dav.htdigest
|
||||
AuthGroupFile /var/www/auth/dav.groups
|
||||
</Location>
|
||||
|
||||
ErrorLog /var/log/apache2/davhost.example.com_error.log
|
||||
LogLevel warn
|
||||
CustomLog /var/log/apache2/davhost.example.com_access.log combined
|
||||
|
|
Loading…
Reference in a new issue