diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-03-14 19:40:57 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-03-15 17:03:09 +0100 |
commit | dfc7e6b421f8defee167b15501f8158c2a1ba6c0 (patch) | |
tree | f972d1f7fdb8da8128494fc6391f833e9529c5a5 /.htaccess | |
parent | b580d2627075f41b71e73145eefa4cfea4688418 (diff) | |
download | nextcloud-server-dfc7e6b421f8defee167b15501f8158c2a1ba6c0.tar.gz nextcloud-server-dfc7e6b421f8defee167b15501f8158c2a1ba6c0.zip |
Duplicate block for PHP 7
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess index 085467e91ca..cf76c56563c 100644 --- a/.htaccess +++ b/.htaccess @@ -37,6 +37,18 @@ SetEnv htaccessWorking true </IfModule> </IfModule> +<IfModule mod_php7.c> + php_value upload_max_filesize 513M + php_value post_max_size 513M + php_value memory_limit 512M + php_value mbstring.func_overload 0 + php_value always_populate_raw_post_data -1 + php_value default_charset 'UTF-8' + php_value output_buffering 0 + <IfModule mod_env.c> + SetEnv htaccessWorking true + </IfModule> +</IfModule> <IfModule mod_rewrite.c> RewriteEngine on RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}] |