I am setting a service in Konga that require authentication for certain routes (I am using Keycloak JWT token) and allow anonymous access for others, while also adding a strip path for a specific route. But the problem is when we have a route enable strip path, this route will be to remove context path / for service and apply for a route of the service.
Example: My service backend is : mysite.com Now I need to setup mysite.com/login no need to authen when access by kong. gateway And others context path need to authen. But when I add a route with a strip path, it will be apply for context path '/' of my back end side and cannot do as I want.
Please help me. thanks.
I want to setup a serivce with authentication for certain routes (I am using Keycloak JWT token) and no need to authen for others.