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