diff options
author | Olivier Paroz <oparoz@users.noreply.github.com> | 2014-09-10 16:08:40 +0200 |
---|---|---|
committer | Olivier Paroz <oparoz@users.noreply.github.com> | 2014-09-10 16:08:40 +0200 |
commit | 59facd769fae15694295261cf5164b328740d4e9 (patch) | |
tree | 21f03f333c9303aee7e6858dbea672046b457026 /.user.ini | |
parent | 1d639161b654c3efef7c9ae28511cb6d8b3529c4 (diff) | |
download | nextcloud-server-59facd769fae15694295261cf5164b328740d4e9.tar.gz nextcloud-server-59facd769fae15694295261cf5164b328740d4e9.zip |
Create .user.ini for PHP-FPM
PHP-FPM can't read .htaccess PHP settings unless a PECL extension is installed.
From version 5.3+ of PHP, settings can be set in .user.ini files
This is a .user.ini file mirroring what is included in the .htaccess file
TODO: Update the documentation if there are sections documenting how to change some PHP limits
Diffstat (limited to '.user.ini')
-rw-r--r-- | .user.ini | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.user.ini b/.user.ini new file mode 100644 index 00000000000..9f3691e5fba --- /dev/null +++ b/.user.ini @@ -0,0 +1,4 @@ +upload_max_filesize=513M +post_max_size=513M +memory_limit=512M +mbstring.func_overload=0 |