-
I am using certificate authentication with OpenIDC Keycloak. I would like to have nginx as a reverse proxy to kong. The reason for this is so that I could do something like the following.
I can not find a way to do something similar in kong. So I would like to have nginx sit in front of kong and then route all request from nginx to kong after being authenticated by keycloak. Is this possible? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @tmdonalds, if I understand correctly, you are trying to configure Kong to accept requests that are authenticated by |
Beta Was this translation helpful? Give feedback.
Hi @tmdonalds, if I understand correctly, you are trying to configure Kong to accept requests that are authenticated by
client certificates. That feature is in Enterprise offering as [mtls auth plugin](https://docs.konghq.com/hub/kong-inc/mtls-auth/l;
without the plugin, you an still inject nginx directvies (http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_verify_client)
to do the similar feature, just that all Routes in Kong are expected to be authenticated by the same client cert auth.