Switch client and server to communicate over TLS
[oom/platform/cert-service.git] / certService / src / test / resources / application.properties
1 # AAF CertService app specific configuration
2 app.config.path=./src/test/resources
3
4 # Mutual TLS configuration
5 server.ssl.enabled=true
6 server.ssl.client-auth=need
7 server.port=${HTTPS_PORT:8443}
8
9 server.ssl.key-store=${KEYSTORE_PATH:/etc/onap/aaf/certservice/certs/certServiceServer-keystore.jks}
10 server.ssl.key-store-password=${KEYSTORE_PASSWORD:secret}
11
12 server.ssl.trust-store=${TRUSTSTORE_PATH:/etc/onap/aaf/certservice/certs/truststore.jks}
13 server.ssl.trust-store-password=${TRUSTSTORE_PASSWORD:secret}