blob: f291372d987334865656105aeb0fe553c0c04847 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
CONFIG_HOME=./config
server.port=10692
server.ssl.enabled=true
server.ssl.protocol=TLS
server.ssl.enabled-protocols=TLSv1.2
server.ssl.key-store=${CONFIG_HOME}/auth/tomcat_keystore
server.ssl.client-auth=need
server.ssl.client-cert=${CONFIG_HOME}/auth/client-cert.p12
server.servlet.contextPath=/
uri.authorization.configuration-file=${CONFIG_HOME}/auth/uri-authorization.json
logging.config=${CONFIG_HOME}/logback-spring.xml
spring.profiles.default=secure,cadi
# For Spring Boot Actuator endpoints
management.endpoints.web.base-path=/rproxy
|