-
Hi all, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
I'm not sure how active this discussion board is based on the open questions on here but for those interested it looks like you can use the base Quarkus environment variables when enabling TLS/SSL. I could not find a comprehensive list of their exact names but they appear to align closely with the Quarkus application.properties and I was able to get a TLS connection using the below parameters in the docker compose file. QUARKUS_HTTP_SSL_CERTIFICATE_KEY_STORE_FILE: |
Beta Was this translation helpful? Give feedback.
I'm not sure how active this discussion board is based on the open questions on here but for those interested it looks like you can use the base Quarkus environment variables when enabling TLS/SSL. I could not find a comprehensive list of their exact names but they appear to align closely with the Quarkus application.properties and I was able to get a TLS connection using the below parameters in the docker compose file.
QUARKUS_HTTP_SSL_CERTIFICATE_KEY_STORE_FILE:
QUARKUS_HTTP_SSL_CERTIFICATE_KEY_STORE_PASSWORD:
QUARKUS_HTTP_SSL_CERTIFICATE_KEY_STORE_FILE_TYPE:
QUARKUS_HTTP_SSL_CERTIFICATE_TRUST_STORE_FILE:
QUARKUS_HTTP_SSL_CERTIFICATE_TRUST_STORE_PASSWORD:
QUARKUS_HTTP_SSL_CERTIFICATE_TR…