Questions tagged [louketo-proxy]

A OpenID Connect Proxy service written in Golang.

Main repo: https://github.com/louketo/louketo-proxy

Historic names:

  • keycloak/keycloak-gatekeeper
  • gambol99/keycloak-proxy
9 questions
4
votes
1 answer

keycloak gatekeeper doesn't block any request

I am trying using keycloak + keycloak-gatekeeper for authorization in a personal api: api.mydomain.com. so far i have done: Created a realm MY-REALM in keycloak, the URL for keycloak is https://auth.mydomain.com Created a confidential client in the…
Christian
  • 75
  • 7
3
votes
1 answer

How does Keycloak determinate a User in new browser window?

I try to make sense of following problem: There is: app1.gatekeeper-test.com app2.other-url.com Those two Clients(app1, app2) are in the same realm (secured behind 2 Gatekeepers) Both are pointing to the same ressource server - Cookies are…
noircc
  • 650
  • 10
  • 28
3
votes
1 answer

What is the purpose of redirection-url in keycloak gatekeeper?

I'm trying to set up Keycloak Gatekeeper as a reverse proxy in front of my service, but I don't know what the purpose is of the redirection-url. I figured I could just put Gatekeeper in front of my service, without my service needing to know…
2
votes
0 answers

Keycloak custom Authentication

I am new to Keycloak, now i trying to add a custom authenticator, i just get source from link this url and build the jar and deployed in keyclaok jboss deployment folder add tried to added under provider folder also. But keycloak server not showing…
1
vote
1 answer

keycloak/louketo gatekeeper -- doesn't automatically redirect to keycloak login

I am setting up gatekeeper/louketo as a reverse proxy for a browser app. I have the proxy deployed as a sidecar in a kubernetes pod, with keycloak elsewhere in the same cluster (but accessed by a public URL). Gatekeeper is behind an nginx ingress,…
shaunc
  • 5,317
  • 4
  • 43
  • 58
1
vote
2 answers

Use Keycloak Gatekeeper in front of backend API

On a single page app (SPA) that runs on DOMAIN calls to DOMAIN/graphql are rerouted to the backend. Both the frontend and backend are secured via a Keycloak Gatekeeper instance. The idea is that the frontend and backend share the kc-access…
user2609980
  • 10,264
  • 15
  • 74
  • 143
0
votes
1 answer

Not able to load keycloak authentication page from application, calling protected resource with ajax request

I have configured keycloak for IAM with gatekeeper as a proxy. When I call protected resource from my angular application through ajax request, it's not redirecting me to login page of keycloak, although in browser request call its showing me…
0
votes
1 answer

Not able to call web service protected by gatekeeper- keycloak via ajax request

I have webservice protected by gatekeeper(louketo-proxy). When I call protected service via ajax request it won't redirect me to login page. It's showing me message "Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote…
sandeep
  • 41
  • 7
0
votes
0 answers

Preserve headers in Angular application

I'm developing an architecture where my Angular front end connected to a Spring Boot back end and the front end is accessible via NGINX. Before accessing to my application, the user must be authenticated. I use Keycloak as Identity manager and…