From c5672bf89bd18dae3f2654f15926d3ee1489f6d9 Mon Sep 17 00:00:00 2001 From: Chris Fritz Date: Thu, 6 Aug 2015 20:05:31 +0900 Subject: [PATCH] Remove unnecessary semicolon from vhosts config Remove semicolon after `{{ vhost.extra_parameters }}` to allow support for blocks like `location ~ \.php$ { ... }`. --- templates/vhosts.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/vhosts.j2 b/templates/vhosts.j2 index 09bda35..4f9e198 100644 --- a/templates/vhosts.j2 +++ b/templates/vhosts.j2 @@ -18,7 +18,7 @@ server { {% endif %} {% if vhost.extra_parameters is defined %} - {{ vhost.extra_parameters }}; + {{ vhost.extra_parameters }} {% endif %} } {% endfor %}