www/etc/nginx/sites-available/tenno.nz.conf.bootstrap
2025-02-11 12:06:06 -06:00

30 lines
477 B
Text

# 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;
}
}