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