From bb17ed077def6361c580243f39758e8375ac221e Mon Sep 17 00:00:00 2001 From: Matt Birkholz Date: Tue, 30 Apr 2024 12:43:52 -0600 Subject: [PATCH] Configure PHP 8.2 (instead of 7.4). Is it worth extra code to configure two PHP versions, old and new? --- README.org | 2 +- roles_t/core/tasks/main.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index be22896..bd14c3e 100644 --- a/README.org +++ b/README.org @@ -4367,7 +4367,7 @@ performance, as recommended by Nextcloud. become: yes command: cmd: phpenmod {{ item }} - creates: /etc/php/7.4/apache2/conf.d/20-{{ item }}.ini + creates: /etc/php/8.2/apache2/conf.d/20-{{ item }}.ini loop: [ nextcloud, apcu ] notify: Restart Apache2. #+END_SRC diff --git a/roles_t/core/tasks/main.yml b/roles_t/core/tasks/main.yml index 0fd0455..a4ece0a 100644 --- a/roles_t/core/tasks/main.yml +++ b/roles_t/core/tasks/main.yml @@ -801,7 +801,7 @@ become: yes command: cmd: phpenmod {{ item }} - creates: /etc/php/7.4/apache2/conf.d/20-{{ item }}.ini + creates: /etc/php/8.2/apache2/conf.d/20-{{ item }}.ini loop: [ nextcloud, apcu ] notify: Restart Apache2. -- 2.25.1