Add post_max_size and upload_max_filesize

Add `post_max_size` and `upload_max_filesize` to the generated php.ini
file.
This commit is contained in:
Oliver Davies 2024-10-29 01:14:50 +00:00
parent 7dea406c49
commit d63549023d

View file

@ -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 }}