diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2025-01-28 14:27:57 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2025-01-28 14:27:57 +0100 |
commit | 5b4c769b7f491c181eea26dcbf9df46046621bd9 (patch) | |
tree | d7bc9d9120ed69034a24ad0ec18ef7e55a984eb3 /roles/nextcloud/files/etc/php/fpm/pool.d/nextcloud.conf | |
parent | dc9acda297a0eebec6d38bcf7243305161ce6527 (diff) |
Adjust nextcloud nginx and PHP-FPM config for bookworm.
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 001ebf8..898ce60 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.4-fpm@nextcloud.sock +listen = /run/php/php8.2-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 |