Skip to content

PEM File Base64

Load Base64-encoded PEM content.

Property Required Description
loader.kind pem-file-base64
loader.base64 Base64-encoded PEM content

Notes

  • Supports certificates and private keys
  • Multiple certificates can be concatenated
  • Common extensions: .pem, .crt, .cer, .key

Example

kete.routes.myroute.destination.tls=true

# Trust store (CA certificates)
kete.routes.myroute.destination.trust-store.loader.kind=pem-file-base64
kete.routes.myroute.destination.trust-store.loader.base64=LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0t...

# Key store (client certificate + private key)
kete.routes.myroute.destination.key-store.loader.kind=pem-file-base64
kete.routes.myroute.destination.key-store.loader.base64=LS0tLS1CRUdJTiBQUklWQVRFIEtFWS0tLS0t...