blob: 9be81d8ddd3f305b037e585b4cbb4944522129b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
server:
port: 2443
ssl:
enabled: {{ (eq "true" (include "common.needTLS" .)) | ternary true false }}
# enabled-protocols: TLSv1.2
# client-auth: want
# key-store: file:${KEYSTORE}
# key-store-password: ${KEYSTORE_PASSWD}
# trust-store: file:${TRUSTSTORE}
# trust-store-password: ${TRUSTSTORE_PASSWD}
clamp:
url:
disable-ssl-validation: {{ (eq "true" (include "common.needTLS" .)) | ternary false true }}
disable-ssl-hostname-check: {{ (eq "true" (include "common.needTLS" .)) | ternary false true }}
apex-editor:
upload-url:
upload-userid:
management:
endpoints:
web:
exposure:
include: health, metrics, prometheus
|