import the dwarven empire

This commit is contained in:
tengel 2024-03-31 10:44:34 -05:00
parent 363b83f93d
commit 0c57aa32c6
23 changed files with 1167 additions and 2 deletions

View file

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