mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
34800ab527
Also, the "config-file" command line argument for the doorman jar is required - it no longer defaults to network-management.conf
27 lines
634 B
Plaintext
27 lines
634 B
Plaintext
basedir = "."
|
|
host = localhost
|
|
port = 0
|
|
|
|
# Database config
|
|
dataSourceProperties {
|
|
dataSourceClassName = org.h2.jdbcx.JdbcDataSource
|
|
"dataSource.url" = "jdbc:h2:file:"${basedir}"/persistence;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=10000;WRITE_DELAY=0;AUTO_SERVER_PORT="${h2port}
|
|
"dataSource.user" = sa
|
|
"dataSource.password" = ""
|
|
}
|
|
h2port = 0
|
|
|
|
# Doorman config
|
|
# Comment out this section if running without doorman service
|
|
doorman {
|
|
approveInterval = 10000
|
|
approveAll = false
|
|
}
|
|
|
|
# Network map config
|
|
# Comment out this section if running without network map service
|
|
networkMap {
|
|
cacheTimeout = 600000
|
|
signInterval = 10000
|
|
}
|