mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-11 01:34:41 +02:00
IngressRoutes websecure + certResolver Let's Encrypt pour Authentik et Guacamole, en plus des routes internes *.lab.local (non destructif). Cert auth.funklab.online émis et vérifié (issuer Let's Encrypt). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
18 lines
446 B
YAML
18 lines
446 B
YAML
# Accès public HTTPS — auth.funklab.online (cert Let's Encrypt auto).
|
|
# S'ajoute à la route interne auth.lab.local (non destructif).
|
|
apiVersion: traefik.io/v1alpha1
|
|
kind: IngressRoute
|
|
metadata:
|
|
name: authentik-public
|
|
namespace: auth
|
|
spec:
|
|
entryPoints:
|
|
- websecure
|
|
routes:
|
|
- match: Host(`auth.funklab.online`)
|
|
kind: Rule
|
|
services:
|
|
- name: authentik
|
|
port: 9000
|
|
tls:
|
|
certResolver: letsencrypt
|