🔓 Insecure Connections to Traefik API
Ever been frustrated by SSL certificate errors when connecting to the Traefik API over the Docker network? We've got you covered! With this release, you can now allow insecure connections to the Traefik API, making it easier to use TraLa in environments where redirects to HTTPS are configured on all entrypoints.
How to Use
Update your configuration.yml file to include the new setting:
environment:
traefik:
api_host: http://traefik:8080
enable_basic_auth: true
insecure_skip_verify: true # Skip SSL certificate verification for Traefik API (default: false)Or use the environment variable:
services:
trala:
image: ghcr.io/dannybouwers/trala:latest
environment:
TRAEFIK_INSECURE_SKIP_VERIFY: "true"What's Changed
- add support for insecure SSL verification in Traefik API connections by @dannybouwers in #78
- fix(deps): update module github.com/nicksnyder/go-i18n/v2 to v2.6.1 by @renovate[bot] in #76
Full Changelog: v0.12.0...v0.13.0