Remove unused error_log configuration
Set defaults for some variables
This commit is contained in:
parent
bf30370079
commit
c5f64bd478
1 changed files with 6 additions and 9 deletions
|
@ -1,17 +1,14 @@
|
|||
upload_max_filesize = 15M
|
||||
post_max_size = 15M
|
||||
memory_limit = 192M
|
||||
max_execution_time = 300
|
||||
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 = Europe/Berlin
|
||||
default_charset = "UTF-8"
|
||||
date.timezone = {{ php.date_timezone | default ('Europe/Berlin') }}
|
||||
default_charset = "{{ php.default_charset | default ('UTF-8') }}"
|
||||
|
||||
;Upload-Fortschritt
|
||||
apc.rfc1867 = 1
|
||||
|
||||
{% if inventory_hostname == "wwwusers.sao" %}
|
||||
error_log = /var/log/php.log
|
||||
{% endif %}
|
||||
display_errors = Off
|
||||
|
||||
;Empfohlene Einstellungen (pcc)
|
||||
|
|
Loading…
Reference in a new issue