31 lines
525 B
Text
31 lines
525 B
Text
# 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;
|
|
}
|
|
}
|