2017-11-15 13:04:16 +00:00
|
|
|
basedir = "."
|
2018-03-14 07:01:53 +00:00
|
|
|
address = "localhost:0"
|
2017-12-11 10:06:29 +00:00
|
|
|
rootStorePath = ${basedir}"/certificates/rootstore.jks"
|
2017-02-08 17:26:33 +00:00
|
|
|
keystorePath = ${basedir}"/certificates/caKeystore.jks"
|
2018-03-13 16:49:02 +00:00
|
|
|
#keystorePassword = "password" #Optional if not specified, user will be prompted on the console.
|
|
|
|
#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.
|
2016-11-01 10:23:26 +00:00
|
|
|
|
|
|
|
dataSourceProperties {
|
|
|
|
dataSourceClassName = org.h2.jdbcx.JdbcDataSource
|
2016-11-04 11:43:28 +00:00
|
|
|
"dataSource.url" = "jdbc:h2:file:"${basedir}"/persistence;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=10000;WRITE_DELAY=0;AUTO_SERVER_PORT="${h2port}
|
2016-11-01 10:23:26 +00:00
|
|
|
"dataSource.user" = sa
|
|
|
|
"dataSource.password" = ""
|
|
|
|
}
|
2018-01-25 15:41:59 +00:00
|
|
|
|
|
|
|
database {
|
|
|
|
runMigration = true
|
|
|
|
}
|
|
|
|
|
2017-02-15 15:42:41 +00:00
|
|
|
h2port = 0
|
|
|
|
|
2018-03-29 09:48:28 +00:00
|
|
|
# Comment out this section if running without the doorman service
|
2018-02-08 16:54:07 +00:00
|
|
|
doorman {
|
2017-12-11 10:06:29 +00:00
|
|
|
approveInterval = 10000
|
|
|
|
approveAll = false
|
2018-02-08 16:54:07 +00:00
|
|
|
jira {
|
2017-12-11 10:06:29 +00:00
|
|
|
address = "https://doorman-jira-host.com/"
|
2018-03-29 09:48:28 +00:00
|
|
|
projectCode = "CSR"
|
|
|
|
username = "username"
|
|
|
|
password = "password"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Comment out this section if running without the revocation service
|
|
|
|
revocation {
|
|
|
|
approveInterval = 10000
|
|
|
|
approveAll = false
|
|
|
|
crlUpdateInterval = 86400000
|
|
|
|
crlEndpoint = "http://test.com/crl"
|
|
|
|
crlCacheTimeout = 86400000
|
|
|
|
jira {
|
|
|
|
address = "https://doorman-jira-host.com/"
|
|
|
|
projectCode = "CRR"
|
2017-12-11 10:06:29 +00:00
|
|
|
username = "username"
|
|
|
|
password = "password"
|
|
|
|
}
|
2017-02-15 15:42:41 +00:00
|
|
|
}
|
2017-12-11 10:06:29 +00:00
|
|
|
|
|
|
|
# Comment out this section if running without network map service
|
2018-02-08 16:54:07 +00:00
|
|
|
networkMap {
|
2017-12-11 10:06:29 +00:00
|
|
|
cacheTimeout = 600000
|
|
|
|
signInterval = 10000
|
|
|
|
}
|
|
|
|
|