server { {% for listen in (nginx_vhost.listen | default(['80', '[::]:80'])) %} listen {{ listen }}{% if 'default' in nginx_vhost and nginx_vhost.default %} default_server{% endif %}; {% endfor %} server_name {{ nginx_vhost.hostnames | default(['_']) | join(' ') }}; {% if 'logs' in nginx_vhost %} {% if 'access' in nginx_vhost.logs %} access_log {{ nginx_vhost.logs.access }}; {% endif %} {% if 'error' in nginx_vhost.logs %} error_log {{ nginx_vhost.logs.error }}; {% endif %} {% endif %} {% include 'includes/body.j2' %} }