Remove unnecessary semicolon from vhosts config

Remove semicolon after `{{ vhost.extra_parameters }}` to allow support for blocks like `location ~ \.php$ { ... }`.
This commit is contained in:
Chris Fritz 2015-08-06 20:05:31 +09:00
parent c892b0a2fe
commit c5672bf89b

View File

@ -18,7 +18,7 @@ server {
{% endif %}
{% if vhost.extra_parameters is defined %}
{{ vhost.extra_parameters }};
{{ vhost.extra_parameters }}
{% endif %}
}
{% endfor %}