diff --git a/templates/php.ini b/templates/php.ini index dd7a93d..ef5007d 100644 --- a/templates/php.ini +++ b/templates/php.ini @@ -1,10 +1,12 @@ -upload_max_filesize = 16M -post_max_size = 16M -memory_limit = 192M -max_execution_time = 300 +; Ansible managed -date.timezone = Europe/Berlin -default_charset = "UTF-8" +upload_max_filesize = {{ php.upload_max_filesize | default ('15M') }} +post_max_size = {{ php.post_max_size | default ('15M') }} +memory_limit = {{ php.memory_limit | default ('192M') }} +max_execution_time = {{ php.max_execution_time | default ('300') }} + +date.timezone = {{ php.date_timezone | default ('Europe/Berlin') }} +default_charset = "{{ php.default_charset | default ('UTF-8') }}" ;Upload-Fortschritt apc.rfc1867 = 1