summaryrefslogtreecommitdiff
path: root/frontends/etc/httpd.conf
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2022-07-13 13:09:16 +0100
committerPaul Buetow <paul@buetow.org>2022-07-13 13:09:16 +0100
commit0f841977cfa1f2b934f433ac4239e612b44e5dcf (patch)
tree9d2abd0b69275e3fd368da6b3a84049921541caa /frontends/etc/httpd.conf
parent251e0cb9f2b5442405a87a71e018f50b73a09995 (diff)
Use ACME
Diffstat (limited to 'frontends/etc/httpd.conf')
-rw-r--r--frontends/etc/httpd.conf181
1 files changed, 0 insertions, 181 deletions
diff --git a/frontends/etc/httpd.conf b/frontends/etc/httpd.conf
deleted file mode 100644
index 044849e..0000000
--- a/frontends/etc/httpd.conf
+++ /dev/null
@@ -1,181 +0,0 @@
-server "foo.zone" {
- listen on * port 80
- block return 302 "https://foo.zone"
-}
-
-server "www.foo.zone" {
- listen on * port 80
- block return 302 "https://www.foo.zone"
-}
-
-server "foo.zone" {
- alias "www.foo.zone"
- listen on * tls port 443
- tls {
- certificate "/etc/ssl/foo.zone.fullchain.pem"
- key "/etc/ssl/private/foo.zone.key"
- }
- location "/*" {
- root "/htdocs/gemtexter/foo.zone"
- directory auto index
- }
-}
-
-server "snonux.land" {
- listen on * port 80
- block return 302 "https://snonux.land"
-}
-
-server "www.snonux.land" {
- listen on * port 80
- block return 302 "https://www.snonux.land"
-}
-
-server "snonux.land" {
- alias "www.snonux.land"
- listen on * tls port 443
- tls {
- certificate "/etc/ssl/foo.zone.fullchain.pem"
- key "/etc/ssl/private/foo.zone.key"
- }
- location "/*" {
- root "/htdocs/gemtexter/foo.zone/notes"
- directory auto index
- }
-}
-
-server "irregular.ninja" {
- listen on * port 80
- block return 302 "https://irregular.ninja"
-}
-
-server "www.irregular.ninja" {
- listen on * port 80
- block return 302 "https://www.irregular.ninja"
-}
-
-server "irregular.ninja" {
- alias "www.irregular.ninja"
- listen on * tls port 443
- tls {
- certificate "/etc/ssl/irregular.ninja.fullchain.pem"
- key "/etc/ssl/private/irregular.ninja.key"
- }
- location "/*" {
- root "/htdocs/irregular.ninja"
- directory auto index
- }
-}
-
-server "snonux.de" {
- alias "www.snonux.de"
- listen on * port 80
- block return 302 "https://foo.zone$REQUEST_URI"
-}
-
-server "snonux.de" {
- alias "www.snonux.de"
- listen on * tls port 443
- tls {
- certificate "/etc/ssl/snonux.de.fullchain.pem"
- key "/etc/ssl/private/snonux.de.key"
- }
- block return 302 "https://foo.zone$REQUEST_URI"
-}
-
-server "foo.surf" {
- alias "www.foo.surf"
- listen on * port 80
- block return 302 "https://foo.zone$REQUEST_URI"
-}
-
-server "foo.surf" {
- alias "www.foo.surf"
- listen on * tls port 443
- tls {
- certificate "/etc/ssl/foo.surf.fullchain.pem"
- key "/etc/ssl/private/foo.surf.key"
- }
- block return 302 "https://foo.zone$REQUEST_URI"
-}
-
-server "sidewalk.ninja" {
- alias "www.sidewalk.ninja"
- listen on * port 80
- block return 302 "https://irregular.ninja$REQUEST_URI"
-}
-
-server "sidewalk.ninja" {
- alias "www.sidewalk.ninja"
- listen on * tls port 443
- tls {
- certificate "/etc/ssl/sidewalk.ninja.fullchain.pem"
- key "/etc/ssl/private/sidewalk.ninja.key"
- }
- block return 302 "https://irregular.ninja$REQUEST_URI"
-}
-
-server "buetow.org" {
- alias "www.buetow.org"
- listen on * port 80
- block return 302 "https://foo.zone$REQUEST_URI"
-}
-
-server "paul.buetow.org" {
- alias "contact.buetow.org"
- listen on * port 80
- block return 302 "https://foo.zone/contact-information.html"
-}
-
-server "tmp.buetow.org" {
- listen on * port 80
- block return 302 "https://buetow.org/tmp/"
-}
-
-server "buetow.org" {
- alias "www.buetow.org"
- listen on * tls port 443
- tls {
- certificate "/etc/ssl/buetow.org.fullchain.pem"
- key "/etc/ssl/private/buetow.org.key"
- }
- root "/htdocs/buetow.org"
- location match "/tmp/.*" {
- directory auto index
- }
- location match "/.*" {
- block return 302 "https://foo.zone$REQUEST_URI"
- }
-}
-
-server "dtail.dev" {
- alias "www.dtail.dev"
- listen on * port 80
- block return 302 "https://dail.dev"
-}
-
-server "dtail.dev" {
- alias "www.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"
- }
-}
-
-server "default" {
- listen on * port 80
- block return 302 "https://foo.zone$REQUEST_URI"
-}
-
-server "default" {
- listen on * tls port 443
- tls {
- certificate "/etc/ssl/foo.zone.fullchain.pem"
- key "/etc/ssl/private/foo.zone.key"
- }
- block return 302 "https://foo.zone$REQUEST_URI"
-}