Skip to content
Snippets Groups Projects
Commit c6c7f364 authored by Robin Sonnabend's avatar Robin Sonnabend
Browse files

Enable passing php-options in php-fpm

parent aa14bfbb
No related branches found
No related tags found
No related merge requests found
......@@ -11,3 +11,9 @@ pm = ondemand
pm.max_children = 10
pm.process_idle_timeout = 10s
pm.max_requests = 500
{% if fpm_params is defined %}
{% for key, value in fpm_params.items() %}
php_value[{{key}}] = {{value}};
{% endfor %}
{% endif %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment