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 | |
parent | bddd49e67875922e20377780c3d2797bc06ab50b (diff) |
Nextcloud: Upgrade backend to PHP7.4.
Diffstat (limited to 'roles/nextcloud/files')
-rw-r--r-- | roles/nextcloud/files/etc/nginx/sites-available/nextcloud | 2 | ||||
-rw-r--r-- | roles/nextcloud/files/etc/php/fpm/pool.d/nextcloud.conf | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/roles/nextcloud/files/etc/nginx/sites-available/nextcloud b/roles/nextcloud/files/etc/nginx/sites-available/nextcloud index e8820ca..2abce2d 100644 --- a/roles/nextcloud/files/etc/nginx/sites-available/nextcloud +++ b/roles/nextcloud/files/etc/nginx/sites-available/nextcloud @@ -70,7 +70,7 @@ server { fastcgi_param front_controller_active true; fastcgi_intercept_errors on; fastcgi_request_buffering off; - fastcgi_pass unix:/run/php/php7.3-fpm@nextcloud.sock; + fastcgi_pass unix:/run/php/php7.4-fpm@nextcloud.sock; } location ~ ^/(?:updater|oc[ms]-provider)(?:$|/) { 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,7 +1,7 @@ [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 |