Shortened service- to svc-

This commit is contained in:
2025-07-09 05:00:41 +02:00
parent db384c6261
commit 575df76ec3
140 changed files with 101 additions and 101 deletions

View File

@@ -0,0 +1,24 @@
server
{
server_name {{domains | get_domain(application_id)}};
{% include 'roles/net-letsencrypt/templates/ssl_header.j2' %}
{% include 'roles/srv-web-injector-core/templates/global.includes.conf.j2'%}
{% include 'roles/srv-web-proxy-core/templates/headers/content_security_policy.conf.j2' %}
charset utf-8;
location /
{
root {{nginx.directories.data.html}};
index index.html index.htm;
}
location /.well-known/ {
alias {{nginx.directories.data.well_known}};
allow all;
default_type "text/plain";
autoindex on;
}
}