traefik-workshop
traefik-workshop copied to clipboard
Exercise 14 - matching any endpoint with /dashboard or /api
in exercise 14 shouldn't this be
match: Host(d.<FIXME>.demo.traefiklabs.tech
) && ( PathPrefix(/dashboard
) || PathPrefix(/api
) )
rather than :
match: Host(d.<FIXME>.demo.traefiklabs.tech
) && PathPrefix(/dashboard
) || PathPrefix(/api
)
so it doesn't conflict with anything that has /api or /dashboard and cause cluster-wide issues...?