[Pkg-apache-commits] r1152 - in /trunk/apache2: README.Debian changelog
sf at alioth.debian.org
sf at alioth.debian.org
Sat Feb 20 11:14:54 UTC 2010
Author: sf
Date: Sat Feb 20 11:14:45 2010
New Revision: 1152
URL: http://svn.debian.org/wsvn/pkg-apache/?sc=1&rev=1152
Log:
Add hints about correct mod_dav_fs configuration to README.Debian
Modified:
trunk/apache2/README.Debian
trunk/apache2/changelog
Modified: trunk/apache2/README.Debian
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apache2/README.Debian?rev=1152&op=diff
==============================================================================
--- trunk/apache2/README.Debian (original)
+++ trunk/apache2/README.Debian Sat Feb 20 11:14:45 2010
@@ -352,3 +352,16 @@
RewriteCond %{HTTP:Authorization} (.*)
RewriteRule . - [env=HTTP_AUTHORIZATION:%1]
+8) mod_dav is behaving strangely
+
+In general, if you use mod_dav_fs, you need to disable multiviews and script
+execution for that directory. For example:
+
+ <Directory /var/www/dav>
+ Dav on
+ Options -MultiViews -ExecCGI
+ SetHandler none
+ <IfModule mod_php5.c>
+ php_admin_value engine Off
+ </IfModule>
+ </Directory>
Modified: trunk/apache2/changelog
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apache2/changelog?rev=1152&op=diff
==============================================================================
--- trunk/apache2/changelog (original)
+++ trunk/apache2/changelog Sat Feb 20 11:14:45 2010
@@ -1,6 +1,8 @@
apache2 (2.2.14-7) UNRELEASED; urgency=low
* Fix potential memory leaks related to the usage of apr_brigade_destroy().
+ * Add hints about correct mod_dav_fs configuration to README.Debian.
+ Closes: #257945
* Fix error in Polish translation of 404 error page. Closes: #570228
* Document ThreadLimit in apache2.conf's comments.
More information about the Pkg-apache-commits
mailing list