skip to Main Content

Nginx – Traefik CORS Middleware not respecting accessControlAllowOriginList

I have created following middleware for API endpoint apiVersion: traefik.containo.us/v1alpha1 kind: Middleware metadata: name: cors-api namespace: api-staging spec: headers: accessControlAllowMethods: - "GET" - "OPTIONS" - "PUT" - "POST" - "DELETE" accessControlAllowHeaders: - "*" accessControlAllowOriginList: - "https://*.example.com" accessControlMaxAge: 100 addVaryHeader: true…

VIEW QUESTION

Diagnosing K3S Ingress 404 – Nginx

I am unable to get even the most basic examples of Ingress Resources working in K3S. According to the documentation, a Traefik Ingress Controller is installed by default but it doesn't seem to handle/see any Ingress Resources I create. The…

VIEW QUESTION
Back To Top
Search