mirror of
https://github.com/chr0nzz/traefik-manager.git
synced 2026-05-09 05:35:22 +02:00
[GH-ISSUE #30] Disable certificatesResolvers when using only tls/store with externaly generated certs files #29
Labels
No labels
bug
bug
bug
feature request
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/traefik-manager#29
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dginhoux on GitHub (May 1, 2026).
Original GitHub issue: https://github.com/chr0nzz/traefik-manager/issues/30
Originally assigned to: @chr0nzz on GitHub.
Hi,
I'm discovering this new tools for traefik. Good idea, lot of work done, than you.
When using only certs files, provided by others services/certs authority/selfgen, it can be great to disable certificatesResolvers into manager.
The next point i see, is the domain/subdomain in route editor, for existing files, generaly rules are defined with the full fqdn ; can the domain list be dynamically generated while reading the current configs files/dynamics configs ?
Have a good day.
@chr0nzz commented on GitHub (May 1, 2026):
Thanks for the feedback and the kind words!
Both points you raised have been addressed and will be included in v1.0.0-beta4:
1. Cert resolver "none" support
You can now set the Certificate Resolver to
nonein Settings → Connection (or leave it asnonein theCERT_RESOLVERenv var) to indicate you're managing certificates externally. When a route is added or edited with TLS enabled and no resolver, TM writestls: {}without acertResolverkey, exactly what Traefik expects when using cert files, a custom CA, ortls.yml. The route form also always shows the cert resolver dropdown with a "None (external / custom cert)" option regardless of whether resolvers are configured.2. Dynamic domain suggestions from existing configs
This is tracked and will be picked up in a follow-up release. The plan is to scan existing dynamic config files and surface domains already in use as additional suggestions in the route form, merging them with the domains configured in Connection settings.
Beta 4 is coming soon. Feel free to test it when it drops using the
:betatag or the beta installer:@dginhoux commented on GitHub (May 1, 2026):
Hi,
I've discover the "none" value while reading your work (src code).
Using envvar, changing (in my case CERT_RESOLVER and DOMAINS), redeploying the stack don't update the manager.yml conf file (in /app/config docker volume).
So stopped use envvars and switched to manager.yml only. With my domains list populated and certresolver at none, it's awesome.
At this time, my comments/suggestions are :
Your work and this crazy UI must be used to replace the too simply official UI...
@dginhoux commented on GitHub (May 1, 2026):
Just deployed in http only instance ; will deploy on tcp/udp instance soon
@chr0nzz commented on GitHub (May 1, 2026):
Great feedback, thank you.
A few clarifications and docs updates to address your points:
Env vars vs manager.yml
Override variables (DOMAINS, CERT_RESOLVER, TRAEFIK_API_URL, etc.) always take priority over manager.yml on every restart, so changing them will take effect. The confusion is understandable since the UI settings write to manager.yml but env vars silently win over them. The docs have been updated to make this clearer. If you prefer managing settings through the UI, remove the env var and the value in manager.yml will be used instead.
COOKIE_SECURE and CONFIG_DIR
Both are env-only and intentionally not stored in manager.yml since they control how the app starts up rather than runtime settings. This is now documented explicitly.
Cert files not shown in Certs tab
This is expected behavior. The certFile paths in your tls.yml point to files inside the Traefik container. For TM to read and display those certificates, the same files need to be mounted into the TM container at the same path. The Certs tab docs have been updated with a warning and a compose example for this.
JSON logs and per-route stats
Both are noted and tracked for a future release.
The doc updates will be live shortly. Thanks again for taking the time to test and report.
@chr0nzz commented on GitHub (May 2, 2026):
beta4 is out
@dginhoux commented on GitHub (May 2, 2026):
Hi,
Just upgraded 1 http instances to beta4 : work fine, need to be tested.
I'm working for deploy the manager on my tcp/udp instances.
I really happy to help you to enhance your work. For me traefik lab should look here.
Have a good day.