diff options
author | Michal Banka <michal.banka@nokia.com> | 2020-05-07 10:27:38 +0200 |
---|---|---|
committer | Michal Banka <michal.banka@nokia.com> | 2020-05-07 15:15:33 +0200 |
commit | f1effd9cb84a47302a36035cd62fb42b531f557c (patch) | |
tree | fe147cc414d53ee62ac5b934be945e9171543f36 /pnfsimulator/src/main | |
parent | 85bedddf8340cbbe57f941a919a980540aeeef59 (diff) |
Add docker-compose to run PNFsim with dynamic certs from AAF
Signed-off-by: Michal Banka <michal.banka@nokia.com>
Change-Id: I135734b17dc88728e199f35f52e87d2651006574
Issue-ID: INT-1583
Diffstat (limited to 'pnfsimulator/src/main')
-rw-r--r-- | pnfsimulator/src/main/resources/application.properties | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pnfsimulator/src/main/resources/application.properties b/pnfsimulator/src/main/resources/application.properties index e2c7639..263302b 100644 --- a/pnfsimulator/src/main/resources/application.properties +++ b/pnfsimulator/src/main/resources/application.properties @@ -12,7 +12,7 @@ management.server.port=5001 management.endpoints.web.exposure.include=refresh ssl.clientCertificateEnabled=true -ssl.clientCertificateDir=/app/store/client.p12 -ssl.clientCertificatePassword=collector -ssl.trustStoreDir=/app/store/trustStore -ssl.trustStorePassword=collector +ssl.clientCertificateDir=/app/store/cert.p12 +ssl.clientCertificatePassword=${CLIENT_CERT_PASS} +ssl.trustStoreDir=/app/store/trust.jks +ssl.trustStorePassword=${TRUST_CERT_PASS} |