mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-27 12:35:11 +01:00
Add php_realpath_cache_size variable.
This commit is contained in:
parent
0077b35193
commit
ee9a827049
@ -40,6 +40,7 @@ By default, all the extra defaults below are applied through the php.ini include
|
||||
|
||||
php_memory_limit: "256M"
|
||||
php_max_execution_time: "60"
|
||||
php_realpath_cache_size: "32K"
|
||||
php_upload_max_filesize: "64M"
|
||||
php_date_timezone: "America/Chicago"
|
||||
php_sendmail_path: "/usr/sbin/sendmail -t -i"
|
||||
|
@ -20,6 +20,7 @@ php_use_managed_ini: true
|
||||
|
||||
php_memory_limit: "256M"
|
||||
php_max_execution_time: "60"
|
||||
php_realpath_cache_size: "32K"
|
||||
php_upload_max_filesize: "64M"
|
||||
php_date_timezone: "America/Chicago"
|
||||
|
||||
|
@ -105,6 +105,8 @@ enable_dl = Off
|
||||
;fastcgi.logging = 0
|
||||
;cgi.rfc2616_headers = 0
|
||||
|
||||
realpath_cache_size = {{ php_realpath_cache_size }}
|
||||
|
||||
;;;;;;;;;;;;;;;;
|
||||
; File Uploads ;
|
||||
;;;;;;;;;;;;;;;;
|
||||
|
Loading…
Reference in New Issue
Block a user