From 6aa9ddf371819bc28b23e9f51a630fa5fd75c1ea Mon Sep 17 00:00:00 2001 From: dragongoose Date: Wed, 7 Jun 2023 15:49:38 +0000 Subject: [PATCH] Add safetwitch.conf --- safetwitch.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 safetwitch.conf diff --git a/safetwitch.conf b/safetwitch.conf new file mode 100644 index 0000000..407a8c7 --- /dev/null +++ b/safetwitch.conf @@ -0,0 +1,14 @@ +server { + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name safetwitch.exozy.me; + + include conf.d/ssl; + + root /srv/http/pages/safetwitch; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } +} \ No newline at end of file