mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
Fixing missing configuration (#530)
* Fixing missing configuration * Addressing review comments
This commit is contained in:
parent
e22e7acd67
commit
4f263f806b
@ -108,8 +108,11 @@ host = localhost
|
|||||||
port = 0
|
port = 0
|
||||||
rootStorePath = ${basedir}"/certificates/rootstore.jks"
|
rootStorePath = ${basedir}"/certificates/rootstore.jks"
|
||||||
keystorePath = ${basedir}"/certificates/caKeystore.jks"
|
keystorePath = ${basedir}"/certificates/caKeystore.jks"
|
||||||
keystorePassword = "password"
|
#keystorePassword = "password" #Optional if not specified, user will be prompted on the console.
|
||||||
caPrivateKeyPassword = "password"
|
#caPrivateKeyPassword = "password" #Optional if not specified, user will be prompted on the console.
|
||||||
|
#rootPrivateKeyPassword = "password" #Optional if not specified, user will be prompted on the console.
|
||||||
|
#rootKeystorePassword = "password" #Optional if not specified, user will be prompted on the console.
|
||||||
|
#trustStorePassword = "password" #Optional if not specified, user will be prompted on the console. Applicable only if, in the ROOT_KEYGEN execution mode.
|
||||||
|
|
||||||
dataSourceProperties {
|
dataSourceProperties {
|
||||||
dataSourceClassName = org.h2.jdbcx.JdbcDataSource
|
dataSourceClassName = org.h2.jdbcx.JdbcDataSource
|
||||||
|
@ -3,8 +3,11 @@ host = localhost
|
|||||||
port = 0
|
port = 0
|
||||||
rootStorePath = ${basedir}"/certificates/rootstore.jks"
|
rootStorePath = ${basedir}"/certificates/rootstore.jks"
|
||||||
keystorePath = ${basedir}"/certificates/caKeystore.jks"
|
keystorePath = ${basedir}"/certificates/caKeystore.jks"
|
||||||
keystorePassword = "password"
|
#keystorePassword = "password" #Optional if not specified, user will be prompted on the console.
|
||||||
caPrivateKeyPassword = "password"
|
#caPrivateKeyPassword = "password" #Optional if not specified, user will be prompted on the console.
|
||||||
|
#rootPrivateKeyPassword = "password" #Optional if not specified, user will be prompted on the console.
|
||||||
|
#rootKeystorePassword = "password" #Optional if not specified, user will be prompted on the console.
|
||||||
|
#trustStorePassword = "password" #Optional if not specified, user will be prompted on the console. Applicable only if, in the ROOT_KEYGEN execution mode.
|
||||||
|
|
||||||
dataSourceProperties {
|
dataSourceProperties {
|
||||||
dataSourceClassName = org.h2.jdbcx.JdbcDataSource
|
dataSourceClassName = org.h2.jdbcx.JdbcDataSource
|
||||||
|
Loading…
Reference in New Issue
Block a user