noticket - add base site, update secrets

This commit is contained in:
Bastian de Byl
2025-02-03 12:34:41 -05:00
parent fc73da78ac
commit fced2a0038
9 changed files with 50 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
server {
listen 80;
server_name {{ base_server_name }};
location '/.well-known/acme-challenge' {
default_type "text/plain";
root /srv/http/letsencrypt;
}
location / {
return 301 https://$host$request_uri;
}
}