Add if-condition for opcache blacklist filename

This commit is contained in:
Tomas Joelsson 2015-10-14 14:23:27 +08:00
parent aaea548336
commit af9293214a

View File

@ -11,4 +11,6 @@ opcache.max_wasted_percentage={{ php_opcache_max_wasted_percentage }}
opcache.validate_timestamps={{ php_opcache_validate_timestamps }}
opcache.revalidate_freq={{ php_opcache_revalidate_freq }}
opcache.max_file_size={{ php_opcache_max_file_size }}
opcache.blacklist_filename={{ php_opcache_blacklist_filename }}
{% if php_opcache_blacklist_filename != '' %}
opcache.blacklist_filename={{ php_opcache_blacklist_filename }}
{% endif %}