From: Matt Birkholz Date: Tue, 30 Apr 2024 18:43:52 +0000 (-0600) Subject: Configure PHP 8.2 (instead of 7.4). X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=bb17ed077def6361c580243f39758e8375ac221e;p=Institute Configure PHP 8.2 (instead of 7.4). Is it worth extra code to configure two PHP versions, old and new? --- 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.