initial import
This commit is contained in:
parent
3ed58b0021
commit
4b70c0023c
48 changed files with 1540 additions and 0 deletions
32
etc/nginx/sites-available/xyzzy.fi.conf.bootstrap
Normal file
32
etc/nginx/sites-available/xyzzy.fi.conf.bootstrap
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# xyzzy.fi
|
||||
# www.xyzzy.fi
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name xyzzy.fi;
|
||||
root /var/xyzzy/html;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name www.xyzzy.fi;
|
||||
root /var/xyzzy/html;
|
||||
index index.html;
|
||||
|
||||
location ~ /\.well-known {
|
||||
allow all;
|
||||
}
|
||||
|
||||
location ~ / {
|
||||
return 301 $scheme://xyzzy.fi$request_uri;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue