Browse Source

Remove unnecessary semicolon from vhosts config

Remove semicolon after `{{ vhost.extra_parameters }}` to allow support for blocks like `location ~ \.php$ { ... }`.
Chris Fritz 10 years ago
parent
commit
c5672bf89b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      templates/vhosts.j2

+ 1 - 1
templates/vhosts.j2

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