소스 검색

Remove unnecessary semicolon from vhosts config

Remove semicolon after `{{ vhost.extra_parameters }}` to allow support for blocks like `location ~ \.php$ { ... }`.
Chris Fritz 10 년 전
부모
커밋
c5672bf89b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 %}