I'd like to specify one of my entrypoints as default so it's one less label I need to apply to my docker containers. It appears that AsDefault is the option I want, according to the documentation. My entrypoints configuration is as so:
entryPoints:
web:
address: :80
http:
redirections:
entryPoint:
to: "websecure"
websecure:
address: :443
asDefault: true
http:
tls:
...
However, Traefik 2.9.8 fails to start up with the following error:
command traefik error: field not found, node: asDefault
Any ideas what I'm doing wrong?