Explorar o código

Remove unnecessary semicolon from vhosts config

Remove semicolon after `{{ vhost.extra_parameters }}` to allow support for blocks like `location ~ \.php$ { ... }`.
Chris Fritz %!s(int64=10) %!d(string=hai) anos
pai
achega
c5672bf89b
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      templates/vhosts.j2

+ 1 - 1
templates/vhosts.j2

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