diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2020-05-16 03:20:08 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2020-05-16 05:46:03 +0200 |
commit | 655e051437391797e0e6a152e650c80b2517a723 (patch) | |
tree | 7e91a8ca9b5e4010345e2906d0645a0d0759a886 /roles/nextcloud/files/etc/php | |
parent | 585258e79d8c5a640905c1f05344ca52f614b112 (diff) |
nextcloud: Set php values in pool configuration.
Diffstat (limited to 'roles/nextcloud/files/etc/php')
-rw-r--r-- | roles/nextcloud/files/etc/php/fpm/pool.d/nextcloud.conf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/nextcloud/files/etc/php/fpm/pool.d/nextcloud.conf b/roles/nextcloud/files/etc/php/fpm/pool.d/nextcloud.conf index dfbb8bf..eb92adb 100644 --- a/roles/nextcloud/files/etc/php/fpm/pool.d/nextcloud.conf +++ b/roles/nextcloud/files/etc/php/fpm/pool.d/nextcloud.conf @@ -10,6 +10,13 @@ pm.max_children = 5 pm.start_servers = 2 pm.min_spare_servers = 1 pm.max_spare_servers = 3 + +php_value[upload_max_filesize] = 512M +php_value[post_max_size] = 512M +php_value[memory_limit] = 512M + +php_admin_value[open_basedir] = /usr/local/share/nextcloud:/var/www/nextcloud:/mnt/nextcloud-data:/etc/nextcloud:/var/cache/nextcloud:/var/log/nextcloud:/usr/share/php:/tmp:/dev + env[HOSTNAME] = $HOSTNAME env[PATH] = /usr/bin:/bin env[TMP] = /tmp |