Hi guys,
i have speckle aws k8 deployment using helm charts. I want to limit my speckle server CORS to only 2 sources. I am using ingress-nginx controller with the config:
nginx.ingress.kubernetes.io/cors-allow-origin: "https://api-dev.app.com, https://api-stg.app.com"
nginx.ingress.kubernetes.io/cors-allow-headers: Content-Type, authorization
nginx.ingress.kubernetes.io/cors-allow-methods: PUT, GET, POST, OPTIONS
but when i check cors via https://cors-test.codehappy.dev/ looks like my cors is not picked UP, as it is overrided by frontend_2 origin service.
How i could archive CORS using this setup?
Thanks!