summaryrefslogtreecommitdiffstats
path: root/nextcloud-defaults.inc
diff options
context:
space:
mode:
authorJames Hogarth <james.hogarth@gmail.com>2017-03-01 00:49:06 +0000
committerJames Hogarth <james.hogarth@gmail.com>2017-03-01 00:49:06 +0000
commitff74a2f3b5b2ea97f5d1f148910515e26b376c48 (patch)
tree6430bcdd6ff78571767522e2046128a07cd5a382 /nextcloud-defaults.inc
parent8d3b8566de3445a209b73d2b25e24b8e4dfb7513 (diff)
Update to 10.0.4
This also includes: - a few php7+ bug fixes - systemd based cron for background tasks - migration steps from owncloud
Diffstat (limited to 'nextcloud-defaults.inc')
-rw-r--r--nextcloud-defaults.inc13
1 files changed, 13 insertions, 0 deletions
diff --git a/nextcloud-defaults.inc b/nextcloud-defaults.inc
index 06f088f..c5d4478 100644
--- a/nextcloud-defaults.inc
+++ b/nextcloud-defaults.inc
@@ -36,6 +36,19 @@ ErrorDocument 404 /nextcloud/core/templates/404.php
</IfModule>
</IfModule>
+<IfModule mod_php7.c>
+ php_value upload_max_filesize 10G
+ php_value post_max_size 10G
+ 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 off
+ <IfModule mod_env.c>
+ SetEnv htaccessWorking true
+ </IfModule>
+</IfModule>
+
# The rewrites for legacy caldav and carddav URLs are omitted here
# because they do not work with Fedora's ownCloud directory layout.
# See https://github.com/nextcloud/core/issues/243#issuecomment-75426453