src

sauce
git clone ssh://anon@src.dalliard.ch/src
log | files | refs

commit 057fc7a413343a6ce4bbc67c5448e30f76cc96d5
parent 70f9786a475f30490b344cf9663ab10b5ef2233a
author: nathanael <nathanael@dalliard.ch>
date:   Mon, 17 Nov 2025 12:29:42 +0000

s2: add sb and mt

diffstat:
Ms2/sysfiles/acme-client.conf | 16++++++++++++++++
Ms2/sysfiles/httpd.conf | 24++++++++++++++++++++++++
Ms2/sysfiles/relayd.conf | 2++
Ms2/sysfiles/weekly.local | 2++
4 files changed, 44 insertions(+), 0 deletions(-)

diff --git a/s2/sysfiles/acme-client.conf b/s2/sysfiles/acme-client.conf @@ -30,3 +30,19 @@ domain bibeltreu.com { domain full chain certificate "/etc/ssl/bibeltreu.com.crt" sign with letsencrypt } +domain die-sexualberatung.ch { + alternative names { + www.die-sexualberatung.ch + } + domain key "/etc/ssl/private/die-sexualberatung.ch.key" + domain full chain certificate "/etc/ssl/die-sexualberatung.ch.crt" + sign with letsencrypt +} +domain die-maltherapie.ch { + alternative names { + www.die-maltherapie.ch + } + domain key "/etc/ssl/private/die-maltherapie.ch.key" + domain full chain certificate "/etc/ssl/die-maltherapie.ch.crt" + sign with letsencrypt +} diff --git a/s2/sysfiles/httpd.conf b/s2/sysfiles/httpd.conf @@ -46,3 +46,27 @@ server "www.bibeltreu.com" { block return 301 "https://bibeltreu.com$REQUEST_URI" no log } +server "die-sexualberatung.ch" { + listen on lo port https + errdocs "/sb" + root "/sb" + gzip-static + no log +} +server "www.die-sexualberatung.ch" { + listen on lo port https + block return 301 "https://die-sexualberatung.ch$REQUEST_URI" + no log +} +server "die-maltherapie.ch" { + listen on lo port https + errdocs "/mt" + root "/mt" + gzip-static + no log +} +server "www.die-maltherapie.ch" { + listen on lo port https + block return 301 "https://die-maltherapie.ch$REQUEST_URI" + no log +} diff --git a/s2/sysfiles/relayd.conf b/s2/sysfiles/relayd.conf @@ -8,6 +8,8 @@ http protocol https { tls keypair "s2.dalliard.ch" tls keypair "bitcoinwallis.ch" tls keypair "bibeltreu.com" + tls keypair "die-maltherapie.ch" + tls keypair "die-sexualberatung.ch" match response header set "Strict-Transport-Security" \ value "max-age=63072000; includeSubDomains" diff --git a/s2/sysfiles/weekly.local b/s2/sysfiles/weekly.local @@ -17,3 +17,5 @@ acme-client s2.dalliard.ch && rcctl reload relayd >/dev/null /usr/local/bin/gotadmin cleanup -r /var/www/got/public/www.git >/dev/null acme-client bitcoinwallis.ch && rcctl reload relayd >/dev/null acme-client bibeltreu.com && rcctl reload relayd >/dev/null +acme-client die-maltherapie.ch && rcctl reload relayd >/dev/null +acme-client die-sexualberatung.ch && rcctl reload relayd >/dev/null