server { listen 443 ssl http2; listen [::]:443 ssl http2; server_name {{ effective_domain }}; ssl_certificate {{ acme_fullchain_location }}; ssl_certificate_key {{ acme_key_location }}; index index.html index.htm; root {{ root_directory }}; include {{ nginx_snippets_directory }}/https; include {{ nginx_snippets_directory }}/root; {{ directives | indent(width=2) }} }