Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added comment about keyStorePath
Browse files Browse the repository at this point in the history
salamonpavel committed Sep 19, 2024
1 parent f53ff32 commit b7eeee1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion server/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
postgres {
# The JDBC driver class
dataSourceClass=org.postgresql.Driver
// host.docker.internal for local run against db running in docker on its host machine; localhost otherwise for testing and for the gh pipeline
# host.docker.internal for local run against db running in docker on its host machine; localhost otherwise for testing and for the gh pipeline
serverName=localhost
portNumber=5432
databaseName=atum_db
@@ -18,6 +18,9 @@
ssl {
enabled=false
keyStorePassword=changeit
# location of Java Keystore (JKS) file with certificate to be used for HTTPS communication;
# it can be sufficient to use self-signed certificate on testing or development environment or
# when application runs in an internal network; otherwise certificates are usually obtained from a trusted CA
keyStorePath="/etc/ssl/certs/selfsigned.jks"
}
monitoring {

0 comments on commit b7eeee1

Please sign in to comment.