Skip to content
Snippets Groups Projects
default.j2 424 B
Newer Older
  • Learn to ignore specific revisions
  • MichiK's avatar
    MichiK committed
    # {{ ansible_managed }}
    
    server {
    
      listen 80;
      listen [::]:80;
    {% for location in nginx_http_locations %}
    
    MichiK's avatar
    MichiK committed
      location {{ location.location }} {
    {{ location.config | indent(width=4, indentfirst=True) }}
      }
    {% endfor %}
    
      location ^~ /.well-known {
        alias {{ acmetool_webroot }};
      }
    
    }
    
    
    {% for server in nginx_additional_http_servers %}
    server {
    {{ server.config | indent(width=2, indentfirst=True) }}
    }
    {% endfor %}