server { server_name {{ domains | get_domain(application_id) }}; {% include 'roles/srv-web-7-7-letsencrypt/templates/ssl_header.j2' %} {% include 'roles/sys-srv-web-inj-compose/templates/server.conf.j2'%} {% include 'roles/srv-proxy-7-4-core/templates/headers/content_security_policy.conf.j2' %} charset utf-8; location / { alias {{ NGINX.DIRECTORIES.DATA.CDN }}; {# Path to your file directory #} autoindex on; {# Enable directory listing #} autoindex_exact_size off; {# Display sizes in a human-readable format #} autoindex_localtime on; {# Show local time #} {% include 'roles/sys-srv-web-inj-compose/templates/location.lua.j2' %} } location /.well-known/ { alias {{NGINX.DIRECTORIES.DATA.WELL_KNOWN}}; allow all; default_type "text/plain"; autoindex on; } }