Fix a syntax error in the nginx virtualhost.

This commit is contained in:
Andrea Dell'Amico 2020-04-27 16:10:09 +02:00
parent 6a7f1aa666
commit bbf5bbb310
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
upstream php {
{% if phpmyadmin_phpfpm_listen_on_socket %}
server unix:{{ item.listen }};
{% else %
{% else %}
server {{ item.listen }};
{% endif %}}
{% endif %}
}
server {