added wiki.skudakrennsport.com

This commit is contained in:
Bastian de Byl
2022-07-19 15:10:38 -04:00
parent cf08a77573
commit abf7a9f767
10 changed files with 161 additions and 6 deletions

View File

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