66897d699c
Former-commit-id: dc4ef33784
19 lines
No EOL
546 B
ApacheConf
Executable file
19 lines
No EOL
546 B
ApacheConf
Executable file
# Disabling 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>
|
|
|
|
# Disabling PHP Magic quotes, we handle this ourself
|
|
php_flag magic_quotes_gpc Off |