diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-03-04 10:02:56 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2019-03-04 11:24:10 +0100 |
commit | 92b5743bf43e2f881d5413ac5ae26f6b097ffa81 (patch) | |
tree | 12707d5b9fca28a932dc2222a0d1ad0164da9cf6 /tests/data | |
parent | feefb0ca89575f0b336bd0e754f62d95fa8df91f (diff) | |
download | nextcloud-server-92b5743bf43e2f881d5413ac5ae26f6b097ffa81.tar.gz nextcloud-server-92b5743bf43e2f881d5413ac5ae26f6b097ffa81.zip |
Remove unused php5 config from .htaccess
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'tests/data')
-rw-r--r-- | tests/data/integritycheck/htaccessWithValidModifiedContent/.htaccess | 12 | ||||
-rw-r--r-- | tests/data/setUploadLimit/htaccess | 2 |
2 files changed, 1 insertions, 13 deletions
diff --git a/tests/data/integritycheck/htaccessWithValidModifiedContent/.htaccess b/tests/data/integritycheck/htaccessWithValidModifiedContent/.htaccess index 596d6718a88..e42d92da679 100644 --- a/tests/data/integritycheck/htaccessWithValidModifiedContent/.htaccess +++ b/tests/data/integritycheck/htaccessWithValidModifiedContent/.htaccess @@ -1,16 +1,4 @@ # Start of valid file -<IfModule mod_php5.c> - php_value upload_max_filesize 519M - php_value post_max_size 519M - 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_php7.c> php_value upload_max_filesize 519M php_value post_max_size 519M diff --git a/tests/data/setUploadLimit/htaccess b/tests/data/setUploadLimit/htaccess index f7bfcdbc80b..53b06d5ae22 100644 --- a/tests/data/setUploadLimit/htaccess +++ b/tests/data/setUploadLimit/htaccess @@ -21,7 +21,7 @@ Header set Cache-Control "max-age=7200, public" </FilesMatch> </IfModule> -<IfModule mod_php5.c> +<IfModule mod_php7.c> php_value upload_max_filesize 513M php_value post_max_size 513M php_value memory_limit 512M |