Initial: Traefik + cloudflared + Gitea auf dama.casa

This commit is contained in:
2026-03-19 14:24:12 +00:00
commit b201d3a13e
12 changed files with 311 additions and 0 deletions

View File

@@ -0,0 +1 @@
# Alle Variablen liegen in /.env.example (Root des Repos)

View File

@@ -0,0 +1,9 @@
tunnel: fbfb9bdc-f049-4c42-9e2a-622adb05f2c8
credentials-file: /etc/cloudflared/credentials.json
ingress:
- hostname: "*.dama.casa"
service: https://traefik:443
originRequest:
noTLSVerify: true
- service: http_status:404

View File

@@ -0,0 +1,15 @@
services:
cloudflared:
image: cloudflare/cloudflared:latest
container_name: cloudflared
restart: unless-stopped
command: tunnel --no-autoupdate --config /etc/cloudflared/config.yaml run
volumes:
- ./config/config.yaml:/etc/cloudflared/config.yaml:ro
- ./data/credentials.json:/etc/cloudflared/credentials.json:ro
networks:
- proxy
networks:
proxy:
external: true