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