-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig
More file actions
34 lines (29 loc) · 676 Bytes
/
config
File metadata and controls
34 lines (29 loc) · 676 Bytes
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
[Infrastructure]
QUEUING = SingleProcess
#QUEUING = ProcessPool
#QUEUING = Celery
DRYRUN = False
[DB]
#Type = mongodb
#Type = sqlite
Type = redis
#Type = rediscluster
##################################
# Distributed system
##################################
[Celery]
CELERY_BROKER_URL = amqp://
CELERY_RESULTS_BACKEND = rpc://
##################################
# Databases
##################################
[MongoDB]
HOST = 'localhost'
PORT = 27017
NAME = 'gharchive'
[Redis]
PORT = 6379
HOST = localhost
DATABASE = 0
[RedisCluster]
NODES = [{"host": "192.168.1.244", "port": "6379"},{"host": "192.168.1.245", "port": "6379"},{"host": "192.168.1.223", "port": "6379"}]