summaryrefslogtreecommitdiff
path: root/openbsd/blowfish.buetow.org/etc/httpd.conf
diff options
context:
space:
mode:
Diffstat (limited to 'openbsd/blowfish.buetow.org/etc/httpd.conf')
-rw-r--r--openbsd/blowfish.buetow.org/etc/httpd.conf71
1 files changed, 0 insertions, 71 deletions
diff --git a/openbsd/blowfish.buetow.org/etc/httpd.conf b/openbsd/blowfish.buetow.org/etc/httpd.conf
deleted file mode 100644
index 76e8afb..0000000
--- a/openbsd/blowfish.buetow.org/etc/httpd.conf
+++ /dev/null
@@ -1,71 +0,0 @@
-server "default" {
- listen on * port 80
- location "/.well-known/acme-challenge/*" {
- root "/acme"
- request strip 2
- }
- location * {
- block return 302 "https://snonux.de"
- }
-}
-
-server "default" {
- listen on * tls port 443
- tls {
- certificate "/etc/ssl/buetow.org.fullchain.pem"
- key "/etc/ssl/private/buetow.org.key"
- }
- location * {
- block return 302 "https://snonux.de"
- }
- location "/.well-known/acme-challenge/*" {
- root "/acme"
- request strip 2
- }
-}
-
-server "snonux.de" {
- listen on * tls port 443
- tls {
- certificate "/etc/ssl/snonux.de.fullchain.pem"
- key "/etc/ssl/private/snonux.de.key"
- }
- location "/*" {
- root "/htdocs/gemtexter/snonux.de"
- directory auto index
- }
- location "/.well-known/acme-challenge/*" {
- root "/acme"
- request strip 2
- }
-}
-
-server "buetow.org" {
- listen on * tls port 443
- tls {
- certificate "/etc/ssl/buetow.org.fullchain.pem"
- key "/etc/ssl/private/buetow.org.key"
- }
- location * {
- block return 302 "https://snonux.de$DOCUMENT_URI"
- }
- location "/.well-known/acme-challenge/*" {
- root "/acme"
- request strip 2
- }
-}
-
-server "dtail.dev" {
- listen on * tls port 443
- tls {
- certificate "/etc/ssl/dtail.dev.fullchain.pem"
- key "/etc/ssl/private/dtail.dev.key"
- }
- location * {
- block return 302 "https://github.dtail.dev"
- }
- location "/.well-known/acme-challenge/*" {
- root "/acme"
- request strip 2
- }
-}