add airlocksix
This commit is contained in:
parent
eeb905e4e0
commit
efdfdacbac
8 changed files with 487 additions and 0 deletions
58
etc/nginx/sites-available/airlocksix.com.conf.bootstrap
Normal file
58
etc/nginx/sites-available/airlocksix.com.conf.bootstrap
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
# airlocksix.com
|
||||
# www.airlocksix.com
|
||||
# airlock6.com
|
||||
# www.airlock6.com
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name airlocksix.com;
|
||||
root /var/xyzzy/html/airlocksix;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
}
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name airlock6.com;
|
||||
root /var/xyzzy/html/airlocksix;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name www.airlocksix.com;
|
||||
root /var/xyzzy/html/airlocksix;
|
||||
index index.html;
|
||||
|
||||
location ~ /\.well-known {
|
||||
allow all;
|
||||
}
|
||||
|
||||
location ~ / {
|
||||
return 301 $scheme://airlocksix.com$request_uri;
|
||||
}
|
||||
}
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name www.airlock6.com;
|
||||
root /var/xyzzy/html/airlocksix;
|
||||
index index.html;
|
||||
|
||||
location ~ /\.well-known {
|
||||
allow all;
|
||||
}
|
||||
|
||||
location ~ / {
|
||||
return 301 $scheme://airlocksix.com$request_uri;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue