Hi, I'm using Traefik 2.2.8 as ingress controller deployed using helm on AWS EKS.
After I added the args in additionalArguments, two error message shown in the log.
The additionalArguments I set:
additionalArguments:
- "--entryPoints.web.forwardedHeaders.trustedIPs=127.0.0.1,192.168.0.0/16"
- "--entryPoints.websecure.forwardedHeaders.trustedIPs=127.0.0.1,192.168.0.0/16"
- "--entrypoints.web.http.redirections.entrypoint.permanent=true"
- "--entrypoints.websecure.http.redirections.entrypoint.permanent=true"
The error message shown in the log:
time="2020-08-19T09:14:49Z" level=info msg="Configuration loaded from flags." │
│ time="2020-08-19T09:14:49Z" level=error msg="Unable to create redirection: the entry point or the port is missing" providerName=internal entryPointName=web │
│ time="2020-08-19T09:14:49Z" level=error msg="Unable to create redirection: the entry point or the port is missing" providerName=internal entryPointName=websecure
Though I can still reach my website, does these error cause any other impact?
Thank you.