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