From bbf5bbb3104f06376e97f84f1532003a6c2bda00 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Mon, 27 Apr 2020 16:10:09 +0200 Subject: [PATCH] Fix a syntax error in the nginx virtualhost. --- templates/nginx_phpmyadmin.conf.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/nginx_phpmyadmin.conf.j2 b/templates/nginx_phpmyadmin.conf.j2 index cea551a..a5f43b1 100644 --- a/templates/nginx_phpmyadmin.conf.j2 +++ b/templates/nginx_phpmyadmin.conf.j2 @@ -1,9 +1,9 @@ upstream php { {% if phpmyadmin_phpfpm_listen_on_socket %} server unix:{{ item.listen }}; -{% else % +{% else %} server {{ item.listen }}; -{% endif %}} +{% endif %} } server {