diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2024-09-08 02:33:40 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2024-09-08 02:33:40 +0200 |
commit | 9af7d5c9f03fb2dac22f4b22c422333aec7cbfe7 (patch) | |
tree | f8e02e0367892c3f539a0ba5641a09f5e9029109 /roles/nextcloud/files/etc/php/fpm/pool.d/nextcloud.conf | |
parent | bddd49e67875922e20377780c3d2797bc06ab50b (diff) |
Nextcloud: Upgrade backend to PHP7.4.
Diffstat (limited to 'roles/nextcloud/files/etc/php/fpm/pool.d/nextcloud.conf')
-rw-r--r-- | roles/nextcloud/files/etc/php/fpm/pool.d/nextcloud.conf | 2 |
1 files changed, 1 insertions, 1 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 eb92adb..001ebf8 100644 --- a/roles/nextcloud/files/etc/php/fpm/pool.d/nextcloud.conf +++ b/roles/nextcloud/files/etc/php/fpm/pool.d/nextcloud.conf @@ -1,24 +1,24 @@ [nextcloud] user = _nextcloud group = nogroup -listen = /run/php/php7.3-fpm@nextcloud.sock +listen = /run/php/php7.4-fpm@nextcloud.sock listen.owner = www-data listen.group = www-data listen.mode = 0600 pm = dynamic 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 env[TMPDIR] = /tmp env[TEMP] = /tmp |