From d63549023d48675c416458106f836c0461addd83 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 29 Oct 2024 01:14:50 +0000 Subject: [PATCH] Add `post_max_size` and `upload_max_filesize` Add `post_max_size` and `upload_max_filesize` to the generated php.ini file. --- templates/php/drupal/php.ini.twig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates/php/drupal/php.ini.twig b/templates/php/drupal/php.ini.twig index fa28093..3660f92 100644 --- a/templates/php/drupal/php.ini.twig +++ b/templates/php/drupal/php.ini.twig @@ -1,4 +1,7 @@ # {{ managedText }} max_vars_input = 1000 -memory_limit = {{ php.ini.memory_limit | default('128M') }} +memory_limit = {{ php.ini.memory_limit }} + +post_max_size = {{ php.ini.post_max_size }} +upload_max_filesize = {{ php.ini.upload_max_filesize }}