add tetóke

This commit is contained in:
tengel 2025-06-22 10:44:27 -05:00
parent 38ae8b6382
commit 22060e1bf8
12 changed files with 517 additions and 0 deletions

View file

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