diff options
| author | Max Bossing <info@maxbossing.de> | 2025-09-30 18:02:29 +0200 | 
|---|---|---|
| committer | Max Bossing <info@maxbossing.de> | 2025-09-30 18:02:29 +0200 | 
| commit | 91a45232bd36727dca2e7474005e240d518d4c54 (patch) | |
| tree | 98fac5162ac356123716634284aece8c927f8106 /services/traefik/traefik.yaml | |
init
Diffstat (limited to 'services/traefik/traefik.yaml')
| -rw-r--r-- | services/traefik/traefik.yaml | 38 | 
1 files changed, 38 insertions, 0 deletions
| diff --git a/services/traefik/traefik.yaml b/services/traefik/traefik.yaml new file mode 100644 index 0000000..dd1bbe6 --- /dev/null +++ b/services/traefik/traefik.yaml @@ -0,0 +1,38 @@ +entrypoints: +  web: +    address: ":80" +    http: +      redirections: +        entrypoint: +          to: websecure +          scheme: https +  websecure:  +    address: ":443" + +providers: +  docker: +    exposedByDefault: false +    network: proxy +  file: +    filename: /etc/traefik/config.yaml + +certificatesResolvers: +  le: +    acme: +      dnschallenge: +        provider: cloudflare +        delaybeforecheck: 0  +      email: max@bossi.ng +      storage: /acme/acme.json + +api:  +  dashboard: true + +log:  +  level: DEBUG + +experimental: +  plugins: +    traefik-oidc-auth: +      moduleName: "github.com/sevensolutions/traefik-oidc-auth" +      version: "v0.13.0" | 
