We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
on https://docs.traefik.io/toml/ existing
[frontends] [frontends.frontend1] backend = "backend2" [frontends.frontend1.routes.test_1] rule = "Host:test.localhost"
should be the above mentioning v < 1.0
Also, I get file not found when I put filename = "rules.toml" and place the file in /etc/traefik or /etc/traefik/configs
It works fine if i use a fully qualified path to rules.toml and for v >= 1.0
[frontends] [frontends.frontend1] backend = "backend2" [frontends.frontend1.routes.test_1] rule = "Host value = "test.localhost,otherfrontend.localhost"
The text was updated successfully, but these errors were encountered:
@kbroughton, to clarify:
is the OLD deprecated way, and
is the NEW (less verbose) way to create frontend rules :)
Concerning filename = "rules.toml", it should be placed in the working dir, or you should use an absolute path.
filename = "rules.toml"
Sorry, something went wrong.
Ah, thanks.
I'm straddling two deployments one < 1.0.0 and one > 1.0.0 and got them backwards.
On Tue, May 31, 2016 at 2:35 AM, Emile Vauge notifications@github.com wrote:
@kbroughton https://github.com/kbroughton, to clarify: [frontends] [frontends.frontend1] backend = "backend2" [frontends.frontend1.routes.test_1] rule = "Host value = "test.localhost,otherfrontend.localhost" is the OLD deprecated way, and [frontends] [frontends.frontend1] backend = "backend2" [frontends.frontend1.routes.test_1] rule = "Host:test.localhost" is the NEW (less verbose) way to create frontend rules :) Concerning filename = "rules.toml", it should be placed in the working dir, or you should use an absolute path. — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub #423 (comment), or mute the thread https://github.com/notifications/unsubscribe/AKErsg0seGUiSdnQjtE1NsaQf523K3jdks5qG-SkgaJpZM4IqI2k .
@kbroughton https://github.com/kbroughton, to clarify:
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub #423 (comment), or mute the thread https://github.com/notifications/unsubscribe/AKErsg0seGUiSdnQjtE1NsaQf523K3jdks5qG-SkgaJpZM4IqI2k .
kesten broughton devops @ cognitivescale
No branches or pull requests
on
https://docs.traefik.io/toml/
existing
should be the above mentioning v < 1.0
Also, I get file not found when I put
filename = "rules.toml" and place the file in /etc/traefik or /etc/traefik/configs
It works fine if i use a fully qualified path to rules.toml
and for v >= 1.0
The text was updated successfully, but these errors were encountered: