44dc24b3b6
Former-commit-id: e7f751c25c
16 lines
479 B
ApacheConf
Executable file
16 lines
479 B
ApacheConf
Executable file
# Disabling URL rewrite and cache management
|
|
# that could cause problems with DAV requests
|
|
# Useful only for Apache servers, with AllowOverride All
|
|
# (ie, .htaccess files enabled)
|
|
|
|
# Allow HTTP headers with Apache/FastCGI
|
|
# See http://code.google.com/p/sabredav/wiki/Authentication#Apache_+_(Fast)CGI
|
|
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
|
|
</IfModule>
|
|
|
|
<IfModule mod_expires.c>
|
|
ExpiresActive Off
|
|
</IfModule>
|