import the dwarven empire
This commit is contained in:
parent
363b83f93d
commit
0c57aa32c6
23 changed files with 1167 additions and 2 deletions
31
etc/nginx/sites-available/dwarvenruins.com.conf.bootstrap
Normal file
31
etc/nginx/sites-available/dwarvenruins.com.conf.bootstrap
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue