Fix a syntax error in the nginx virtualhost.

This commit is contained in:
Andrea Dell'Amico 2020-04-27 16:10:25 +02:00
parent e165c5590d
commit 4b8c6a9e36
1 changed files with 2 additions and 2 deletions

View File

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