Magellan Linux

Contents of /trunk/apache2/patches/apache2-2.2.4-default-dav-settings.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 231 - (show annotations) (download)
Sat Jun 30 02:24:36 2007 UTC (16 years, 10 months ago) by niro
File size: 1124 byte(s)
files for apache-2.2.4-r1

1 diff -Naur httpd-2.2.4/docs/conf/extra/httpd-dav.conf.in httpd-2.2.4-magellan/docs/conf/extra/httpd-dav.conf.in
2 --- httpd-2.2.4/docs/conf/extra/httpd-dav.conf.in 2006-01-24 15:47:44.000000000 +0100
3 +++ httpd-2.2.4-magellan/docs/conf/extra/httpd-dav.conf.in 2007-06-30 03:13:43.000000000 +0200
4 @@ -12,11 +12,11 @@
5 # on the directory where the DavLockDB is placed and on any directory where
6 # "Dav On" is specified.
7
8 -DavLockDB "@@ServerRoot@@/var/DavLock"
9 +DavLockDB "/var/lib/dav/lockdb"
10
11 -Alias /uploads "@@ServerRoot@@/uploads"
12 +Alias /uploads "/var/www/uploads"
13
14 -<Directory "@@ServerRoot@@/uploads">
15 +<Directory "/var/www/uploads">
16 Dav On
17
18 Order Allow,Deny
19 @@ -25,8 +25,8 @@
20 AuthType Digest
21 AuthName DAV-upload
22 # You can use the htdigest program to create the password database:
23 - # htdigest -c "@@ServerRoot@@/user.passwd" DAV-upload admin
24 - AuthUserFile "@@ServerRoot@@/user.passwd"
25 + # htdigest -c "/var/www/.htpasswd-dav" DAV-upload admin
26 + AuthUserFile "/var/www/.htpasswd-dav"
27
28 # Allow universal read-access, but writes are restricted
29 # to the admin user.