-
Notifications
You must be signed in to change notification settings - Fork 1
/
hold.yaml
62 lines (55 loc) · 1.34 KB
/
hold.yaml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
server:
applicationConnectors:
- type: http
port: ${HTTP_PORT:-8080}
adminConnectors:
- type: http
port: ${ADMIN_PORT:-8081}
requestLog:
appenders:
- type: ${APPENDER_TYPE:-console}
filterFactories:
- type: status-filter-factory
logging:
level: INFO
appenders:
- type: ${APPENDER_TYPE:-console}
loggers:
com.wire.bots.logger: ${LOG_LEVEL:-INFO}
org.eclipse.jetty: WARN
io.dropwizard: INFO
org.reflections: WARN
org.apache: ERROR
swagger:
version: 1.0
resourcePackage: com.wire.bots.hold.resource
title: Legal Hold Service
description: Legal Hold Service documentation
contact: Wire GmbH
contactEmail: [email protected]
contactUrl: "https://www.wire.com"
schemes:
- https
- http
jerseyClient:
timeout: 40s
connectionTimeout: 40s
connectionRequestTimeout: 40s
keepAlive: 0ms
retries: 3
userAgent: legalhold/1.1.0
tls:
protocol: TLSv1.3
provider: SunJSSE
supportedProtocols:
- TLSv1.3
- TLSv1.2
sleep: ${DELAY:-60s}
token: ${SERVICE_TOKEN:-dummy}
apiHost: ${WIRE_API_HOST:-https://prod-nginz-https.wire.com}
coreCryptoPassword: ${CORE_CRYPTO_PASSWORD}
database:
driverClass: ${DB_DRIVER:-org.postgresql.Driver}
url: ${DB_URL:-jdbc:postgresql://localhost/hold}
user: ${DB_USER:-hold}
password: ${DB_PASSWORD:-hold}