-
Notifications
You must be signed in to change notification settings - Fork 0
/
static_ref.conf
49 lines (44 loc) · 1.46 KB
/
static_ref.conf
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
server.static {
manager {
requestTimeout = 5 //in seconds
}
engine {
//Available options (case insensitive):
//- No transactions logged -> 'Never' or 'Off'
//- All transactions logged -> 'Always' or 'RW'
//- Only Read transcations logged -> 'OnReadOnly' or 'RO' or 'Read'
//- Only Write transactions logged -> 'OnWriteOnly' or 'WO' or 'Write'
storeLogs = "OnWriteOnly" // [Never (Off), OnReadOnly (RO, Read), OnWriteOnly (WO, Write), Always (RW)]
requestTimeout = 5 //in seconds
}
database {
requestTimeout = 5 //in seconds
//core3.database.dals.json.Redis
redis {
hostname = "localhost"
port = 6379
secret = "<some secret>"
connectionTimeout = 5 //in seconds
databaseID = 0
scanCount = 100
}
}
security {
authentication {
clients {
SOME_CLIENT_NAME {
//Warning: Updating any of the following values will invalidate all existing user credentials!
//These parameters need to be shared between all applications accessing the same authentication database.
instanceSalt = "<some random instance salt>"
passwordIterations = 15000
keyLength = 256
//The following values can be updated at any time and will not affect the stored user credentials
placeholderPasswordSize = 128
saltSize = 128
sessionTokenSize = 130
localTokenExpiration = 15 //in minutes
}
}
}
}
}