-
I have an issue, where I am setting up rauthy behind a tls-terminating reverse-proxy, and rauthy's jwks endpoint is primarily used inside a virtual network, so I decided that rauthy itself does not need to encrypt any network connections. However I discovered that another service (running within the same virtual network) refuses to connect to JWKS endpoints through plain HTTP. Therefore I needed to setup rauthy to serve the jwks endpoint over https (in addition to http) using a self-signed key and cert. From https://sebadob.github.io/rauthy/config/tls.html?highlight=certificate#config I thought I needed to set the server certificates, but this didn't seem to affect the JWKS endpoint. But when I overwrite the
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
That makes sense, since the RFC suggests that clients should never fetch the public keys via plain HTTP for good reason.
The Cache TLS is independent from the |
Beta Was this translation helpful? Give feedback.
That makes sense, since the RFC suggests that clients should never fetch the public keys via plain HTTP for good reason.
The Cache TLS is independent from the
TLS_KEY
andTLS_CERT
, which are used for the public API only. But, these values …