From 43e180b9bf172655f6e729f2070a6801ba713777 Mon Sep 17 00:00:00 2001 From: Starfall Date: Mon, 29 Apr 2024 11:12:05 -0500 Subject: prepare repo for direct publishing --- www.starfall.systems | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 www.starfall.systems (limited to 'www.starfall.systems') diff --git a/www.starfall.systems b/www.starfall.systems new file mode 100644 index 0000000..bf2edab --- /dev/null +++ b/www.starfall.systems @@ -0,0 +1,30 @@ +# vim: ft=nginx +server { + listen 80; + listen [::]:80; + server_name starfall.systems www.starfall.systems; + location ^~ /.well-known/acme-challenge { + alias /var/lib/dehydrated/acme_challenges/; + } + return 301 https://$host$request_uri; +} + +server { + server_name www.starfall.systems; + include /etc/nginx/snippets/ssl.conf; + return 302 https://starfall.systems$request_uri; +} + +server { + listen 443 ssl; + listen [::]:443 ssl; + server_name starfall.systems; + include /etc/nginx/snippets/ssl.conf; + + root /srv/starfall.systems/html; + try_files $uri $uri/index.html $uri.html =404; + + location ~ ^/(css/img/js/files)/ { + root /srv/starfall.systems; + } +} -- cgit