www/etc/nginx/sites-available/tetoke.com.conf.bootstrap
2025-06-22 10:44:27 -05:00

30 lines
489 B
Text

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