From a37fb871bc3c828dc5cebcefdb258b6bf33dae34 Mon Sep 17 00:00:00 2001 From: Matt Birkholz Date: Sun, 27 Oct 2024 13:26:23 -0700 Subject: [PATCH] Increase Nextcloud PHP memory_limit to 768M. Nextcloud 28 admin board complained that 512M was too little. --- 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 4c3bb86..9a96824 100644 --- a/README.org +++ b/README.org @@ -4339,7 +4339,7 @@ performance, as recommended by Nextcloud. lineinfile: path: /etc/php/8.2/apache2/php.ini regexp: memory_limit *= - line: memory_limit = 512M + line: memory_limit = 768M - name: Include PHP parameters for Nextcloud. become: yes diff --git a/roles_t/core/tasks/main.yml b/roles_t/core/tasks/main.yml index 8e8fb1e..2c7c6b0 100644 --- a/roles_t/core/tasks/main.yml +++ b/roles_t/core/tasks/main.yml @@ -757,7 +757,7 @@ lineinfile: path: /etc/php/8.2/apache2/php.ini regexp: memory_limit *= - line: memory_limit = 512M + line: memory_limit = 768M - name: Include PHP parameters for Nextcloud. become: yes -- 2.25.1