+panoptikum

This commit is contained in:
TSS Admin
2025-10-01 18:43:54 +00:00
parent 95e7b8ed96
commit a895c85948
10 changed files with 52 additions and 0 deletions

5
deckard/caddy/Caddyfile Normal file
View File

@@ -0,0 +1,5 @@
{
email it@tss-hd.de
}
import sites/*

View File

@@ -0,0 +1,27 @@
services:
caddy:
# Use the official Caddy image
image: docker.io/library/caddy:latest
# Always restart the container unless it's manually stopped
restart: unless-stopped
ports:
- "80:80"
- "443:443"
# HTTP3:
- "443:443/udp"
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
- ./sites:/etc/caddy/sites
- caddy_data:/data
- caddy_config:/config
networks:
- caddynet
networks:
caddynet:
external: true
# Define the named volumes for persistent storage
volumes:
caddy_data:
caddy_config:

View File

@@ -0,0 +1,7 @@
www.dev.hamann-ausgabe.de, https://development.hamann-ausgabe.de, http://development.hamann-ausgabe.de {
redir https://dev.hamann-ausgabe.de{uri}
}
dev.hamann-ausgabe.de {
reverse_proxy hamannstaging:5000
}

View File

@@ -0,0 +1,15 @@
www.hamann-werke.de, hamann-werke.de {
redir https://hamann-ausgabe.de/HKW
}
www.hamann-briefwechsel.de, hamann-briefwechel.de, hamann-briefe.de, www.hamann-briefe.de {
redir https://hamann-ausgabe.de/HKB
}
www.hamann-ausgabe.de {
redir https://hamann-ausgabe.de{uri}
}
hamann-ausgabe.de {
reverse_proxy hamannservice:5000
}

View File

@@ -0,0 +1,7 @@
www.hamnann-kolloquium.de {
redir https://hamann-kolloquium.de{uri}
}
hamann-kolloquium.de {
reverse_proxy hamannkolloquium:80
}

View File

@@ -0,0 +1,7 @@
www.theodor-springmann-stiftung.de, www.tss-hd.de, tss-hd.de {
redir https://theodor-springmann-stiftung.de{uri}
}
theodor-springmann-stiftung.de {
reverse_proxy tsssite:80
}