Skip to content

Commit

Permalink
fixes #805 update server.yml to add keystore and truststore passwords (
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehu committed Nov 9, 2020
1 parent ce76888 commit 6e3d021
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions server/src/integration/resources/config/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,21 @@ enableHttp2: true
# Keystore file name in config folder.
keystoreName: server.keystore

# Keystore password
keystorePass: ${server.keystorePass:password}

# Private key password
keyPass: ${server.keyPass:password}

# Flag that indicate if two way TLS is enabled. Not recommended in docker container.
enableTwoWayTls: false

# Truststore file name in config folder.
truststoreName: server.truststore

# Truststore password
truststorePass: ${server.truststorePass:password}

# Bootstrap truststore name used to connect to the light-config-server if it is used.
bootstrapStoreName: src/integration/resources/config/bootstrap.truststore

Expand Down

0 comments on commit 6e3d021

Please sign in to comment.