fix: correctly set apcu php mod

This commit is contained in:
2024-12-23 13:10:42 +00:00
parent c772760646
commit 61e28b4cae
3 changed files with 14 additions and 0 deletions

View File

@@ -60,6 +60,11 @@
name: slapd-custom
state: restarted
- name: restart php-fpm
systemd:
name: php8.2-fpm
state: restarted
- name: daemon reload
systemd:
daemon-reload: yes

View File

@@ -34,3 +34,10 @@
dest: /etc/nginx/sites-enabled/nextcloud.conf
notify:
- reload nginx
- name: Deploy apcu ini
template:
src: apcu.ini
dest: /etc/php/8.2/mods-available/apcu.ini
notify:
- restart php-fpm

View File

@@ -0,0 +1,2 @@
extension=apcu.so
apc.enable_cli=1