traefik-workshop icon indicating copy to clipboard operation
traefik-workshop copied to clipboard

Exercise 14 - matching any endpoint with /dashboard or /api

Open ThaSami opened this issue 3 years ago • 0 comments

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...?

ThaSami avatar Aug 29 '21 13:08 ThaSami