forked from ebowman/splitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.config
46 lines (35 loc) · 871 Bytes
/
turbo.config
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
# listen on this port
port = 8080
# Requests always forwarded to this
reference = "localhost:9090"
# Shadow requests forwarded to this
shadow = "localhost:9191"
# Must be true for shadow to receive requests
enableShadowing = true
# If these are set, rewrite the Host: header accordingly
referenceHostname = "reference.tomtom.com"
shadowHostname = "shadow.tomtom.com"
capture = "none" # "none" | "mongodb"
rewriteConfig = "ofbiz.config"
audit {
level = "info"
console = true
truncate = true
file = "default"
}
pool {
maxOpenConnections = 70
maxWaitMs = 5000
maxIdleConnections = 8
msBetweenEvictionRuns = 10000
numTestsPerEvictionRuns = 3
maxIdleTimeMs = 60000
connectTimeoutMillis = 30000
receiveTimeoutMillis = 120000
keepAlive = true
}
mongo {
host = "localhost"
port = 27017
db = "splitter"
}