You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TlsConfig requires that your private key and certificate are on the classpath or a file. For instances where we want self signed certs we are generating them during build time, writing them out to a file and then overriding the config passed into the TlsConfig constructor.
It'd be great if we were able to pass in our self signed cert and key.
The text was updated successfully, but these errors were encountered:
This in particular makes TlsConfig very difficult to use; but it also treats all configuration values as required, without providing fallback defaults. This makes it unsuitable for use as a utility outside of the xio toolchain.
What about switching TlsConfig to a builder, instead of an initialize-once bean class?
TlsConfig requires that your private key and certificate are on the classpath or a file. For instances where we want self signed certs we are generating them during build time, writing them out to a file and then overriding the config passed into the TlsConfig constructor.
It'd be great if we were able to pass in our self signed cert and key.
The text was updated successfully, but these errors were encountered: