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