Remove unnecessary semicolon from vhosts config

Remove semicolon after `{{ vhost.extra_parameters }}` to allow support for blocks like `location ~ \.php$ { ... }`.
pull/23/head
Chris Fritz 9 years ago
parent c892b0a2fe
commit c5672bf89b
  1. 2
      templates/vhosts.j2

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