-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.sample.json
42 lines (42 loc) · 1.05 KB
/
conf.sample.json
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
{
"listenAddress": "127.0.0.1",
"listenPort": 8085,
"serverReadTimeoutSecs": 60,
"serverWriteTimeoutSecs": 60,
"corsAllowedOrigins": [],
"timeZone": "Europe/Prague",
"logLevel": "debug",
"redis": {
"host": "localhost",
"port": 6379,
"db": 1
},
"db": {
"host": "localhost",
"name": "dbname",
"user": "dbuser",
"password": "dbpassword"
},
"cleaner": {
"minAgeDaysUnvisited": 30,
"checkIntervalSecs": 200,
"numProcessItemsPerTick": 5
},
"reporting": {
"host": "localhost",
"user": "reporter",
"passwd": "rpassword",
"dbName": "rdbname"
},
"archiver": {
"checkIntervalSecs": 15,
"checkIntervalChunk": 2,
"ddStateFilePath": "./deduplicator.bin",
"queueKey": "conc_archive_queue",
"failedRecordsKey": "camus_failed_items"
},
"indexer": {
"docRemoveChannel": "query_history_fulltext_del_channel",
"indexDirPath": "/path/to/camus-fulltext"
}
}