adding tenno
This commit is contained in:
parent
476637c576
commit
7c82395b47
9 changed files with 366 additions and 0 deletions
30
etc/nginx/sites-available/tenno.nz.conf.bootstrap
Normal file
30
etc/nginx/sites-available/tenno.nz.conf.bootstrap
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# tenno.nz
|
||||
# www.tenno.nz
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name tenno.nz;
|
||||
root /var/xyzzy/html/tenno;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name www.tenno.nz;
|
||||
root /var/xyzzy/html/tenno;
|
||||
index index.html;
|
||||
|
||||
location ~ /\.well-known {
|
||||
allow all;
|
||||
}
|
||||
|
||||
location ~ / {
|
||||
return 301 $scheme://tenno.nz$request_uri;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue