Add drgns-space.conf

give temporary message while drgns.space is down :(
This commit is contained in:
dragongoose 2023-11-16 01:46:04 +00:00
parent 866325e088
commit 02f764b5a5
Signed by: exogit
GPG key ID: 1DDC6BC38786C595

15
drgns-space.conf Normal file
View file

@ -0,0 +1,15 @@
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name drgns.space *.drgns.space;
ssl_certificate /etc/letsencrypt/live/drgns.space/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/drgns.space/privkey.pem;
root /srv/http/pages/drngs-downtime;
index index.html;
location / {
try_files $uri $uri.html $uri/ =404;
}
}