mirror of
https://github.com/opdavies/build-configs.git
synced 2025-01-22 18:27:31 +00:00
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:
parent
7dea406c49
commit
d63549023d
|
@ -1,4 +1,7 @@
|
||||||
# {{ managedText }}
|
# {{ managedText }}
|
||||||
|
|
||||||
max_vars_input = 1000
|
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 }}
|
||||||
|
|
Loading…
Reference in a new issue