adding tenno

This commit is contained in:
tengel 2025-02-11 12:06:06 -06:00
parent 476637c576
commit 7c82395b47
9 changed files with 366 additions and 0 deletions

View file

@ -0,0 +1,30 @@
# tenno.nz
# www.tenno.nz
server {
listen 80;
listen [::]:80;
server_name tenno.nz;
root /var/xyzzy/html/tenno;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}
server {
listen 80;
listen [::]:80;
server_name www.tenno.nz;
root /var/xyzzy/html/tenno;
index index.html;
location ~ /\.well-known {
allow all;
}
location ~ / {
return 301 $scheme://tenno.nz$request_uri;
}
}