add troyito

This commit is contained in:
tengel 2025-07-02 06:11:29 -05:00
parent 22060e1bf8
commit d35dfe7800
12 changed files with 517 additions and 0 deletions

View file

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