Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
Fix SSL defaults (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
pithumke authored Jun 12, 2020
1 parent 6988b73 commit fac7b88
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions services/submission/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,35 @@ management:
health:
probes:
enabled: true

client:
ssl:
key-password: ${SSL_SUBMISSION_KEYSTORE_PASSWORD}
key-store: ${SSL_SUBMISSION_KEYSTORE_PATH}
key-store-password: ${SSL_SUBMISSION_KEYSTORE_PASSWORD}
verification:
trust-store: ${SSL_VERIFICATION_TRUSTSTORE_PATH}
trust-store-password: ${SSL_VERIFICATION_TRUSTSTORE_PASSWORD}

server:
ssl:
enabled: true
enabled-protocols: TLSv1.2,TLSv1.3
protocol: TLS
ciphers: >-
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
TLS_DHE_DSS_WITH_AES_128_GCM_SHA256
TLS_DHE_DSS_WITH_AES_256_GCM_SHA384
TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
TLS_AES_128_GCM_SHA256
TLS_AES_256_GCM_SHA384
TLS_AES_128_CCM_SHA256
key-password: ${SSL_SUBMISSION_KEYSTORE_PASSWORD}
key-store: ${SSL_SUBMISSION_KEYSTORE_PATH}
key-store-password: ${SSL_SUBMISSION_KEYSTORE_PASSWORD}
key-store-provider: SUN
key-store-type: JKS

0 comments on commit fac7b88

Please sign in to comment.