-
Is there a way to configure the server in order to forward client certs to the auth_callout service also when At the moment I have a configuration like
now, when i try to do
the auth callout service gets
in the request claims while if I run
The auth-callout svc receives this
So there's no info about certs provided by the client So the main goal is to have a single NATS server instance that allows (using auth-callout) to authentica via username/password AND client certs |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
If you want the server to look at the certs, |
Beta Was this translation helpful? Give feedback.
-
To further expand. The callout and the server configuration may not be in sync. This basically becomes a promise to the callout that the certs are valid. The callout can then do additional work, but at the very least, it can ensure that the client-provided certs are valid from a TLS perspective. |
Beta Was this translation helpful? Give feedback.
If you want the server to look at the certs,
verify
has to be enabled. - if you think about it, this way there's the protection that the certs are valid.