11# debug=true
22# trace=true
33
4- server.tomcat.basedir =${TOMCAT_BASE_DIR:-/ }
4+ server.tomcat.basedir =${TOMCAT_BASE_DIR}
55
6- server.port =${LABKEY_PORT:-8443 }
6+ server.port =${LABKEY_PORT}
77
88spring.main.log-startup-info =true
99
@@ -23,13 +23,13 @@ logging.level.root=WARN
2323
2424# custom tomcat group
2525logging.group.tomcat =org.apache.catalina, org.apache.coyote, org.apache.tomcat
26- logging.level.tomcat =${LOG_LEVEL_TOMCAT:OFF }
26+ logging.level.tomcat =${LOG_LEVEL_TOMCAT}
2727
2828logging.level.org.apache.coyote.http2 =OFF
2929
3030# default groups
31- logging.level.web =${LOG_LEVEL_SPRING_WEB:OFF }
32- logging.level.sql =${LOG_LEVEL_SQL:OFF }
31+ logging.level.web =${LOG_LEVEL_SPRING_WEB}
32+ logging.level.sql =${LOG_LEVEL_SQL}
3333
3434logging.level.net.sf.ehcache =ERROR
3535
@@ -89,11 +89,11 @@ context.resources.jdbc.labkeyDataSource.username=@@jdbcUser@@
8989context.resources.jdbc.labkeyDataSource.password =@@jdbcPassword@@
9090
9191# the ':-' setup doesn't appeear to work. They have to be set as env vars anyway, but at least this shows the indended defaults set elsewhere
92- context.resources.jdbc.labkeyDataSource.maxTotal =${POSTGRES_MAX_TOTAL_CONNECTIONS:-50 }
93- context.resources.jdbc.labkeyDataSource.maxIdle =${POSTGRES_MAX_IDLE_CONNECTIONS:-10 }
94- context.resources.jdbc.labkeyDataSource.maxWaitMillis =${POSTGRES_MAX_WAIT_MILLIS:-120000 }
95- context.resources.jdbc.labkeyDataSource.accessToUnderlyingConnectionAllowed =${POSTGRES_ACCESS_UNDERLYING_CONNECTIONS:-true }
96- context.resources.jdbc.labkeyDataSource.validationQuery =${POSTGRES_VALIDATION_QUERY:-SELECT 1 }
92+ context.resources.jdbc.labkeyDataSource.maxTotal =${POSTGRES_MAX_TOTAL_CONNECTIONS}
93+ context.resources.jdbc.labkeyDataSource.maxIdle =${POSTGRES_MAX_IDLE_CONNECTIONS}
94+ context.resources.jdbc.labkeyDataSource.maxWaitMillis =${POSTGRES_MAX_WAIT_MILLIS}
95+ context.resources.jdbc.labkeyDataSource.accessToUnderlyingConnectionAllowed =${POSTGRES_ACCESS_UNDERLYING_CONNECTIONS}
96+ context.resources.jdbc.labkeyDataSource.validationQuery =${POSTGRES_VALIDATION_QUERY}
9797
9898# send access logs to stdout:
9999server.tomcat.accesslog.enabled =true
@@ -115,16 +115,16 @@ server.http2.enabled=true
115115
116116server.ssl.enabled =true
117117
118- server.ssl.ciphers =${TOMCAT_SSL_CIPHERS:-HIGH:!ADH:!EXP:!SSLv2:!SSLv3:!MEDIUM:!LOW:!NULL:!aNULL }
119- server.ssl.enabled-protocols =${TOMCAT_SSL_ENABLED_PROTOCOLS:-TLSv1.3,TLSv1.2 }
120- server.ssl.protocol =${TOMCAT_SSL_PROTOCOL:-TLS }
118+ server.ssl.ciphers =${TOMCAT_SSL_CIPHERS}
119+ server.ssl.enabled-protocols =${TOMCAT_SSL_ENABLED_PROTOCOLS}
120+ server.ssl.protocol =${TOMCAT_SSL_PROTOCOL}
121121
122122
123123# must match values in entrypoint.sh
124- server.ssl.key-alias =${TOMCAT_KEYSTORE_ALIAS:-tomcat }
125- server.ssl.key-store =${LABKEY_HOME}/${TOMCAT_KEYSTORE_FILENAME:-labkey.p12 }
124+ server.ssl.key-alias =${TOMCAT_KEYSTORE_ALIAS}
125+ server.ssl.key-store =${LABKEY_HOME}/${TOMCAT_KEYSTORE_FILENAME}
126126# server.ssl.key-store-password=${TOMCAT_KEYSTORE_PASSWORD}
127- server.ssl.key-store-type =${TOMCAT_KEYSTORE_FORMAT:-PKCS12 }
127+ server.ssl.key-store-type =${TOMCAT_KEYSTORE_FORMAT}
128128
129129context.encryptionKey =@@encryptionKey@@
130130
0 commit comments