-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconfig.py
67 lines (57 loc) · 1.12 KB
/
config.py
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
63
64
65
66
67
# -*- coding: utf-8 -*-
import sys
import os
env = os.environ.get('DEPLOY_ENV', None)
if len(sys.argv) > 1:
env = sys.argv[1]
if env in ['test', 'pre', 'prd']:
ENV = str(env)
else:
ENV = 'test'
# Cluster Reload 时间间隔(秒)
SPAN_TIME = 300
# 证书过期时间间隔(秒)
SPAN_CERT = 60 * 60 * 24
# 证书过期通知人员邮件
RECEIVERDICT = {
# 测试
'test': '[email protected]',
# 测试
'pre': '',
# 科技
'prd': '',
}
RECEIVER = RECEIVERDICT[ENV]
# FLASK CONFIG
FLK = {
'test': {"PORT": 8081, "Debug": True},
'pre': {"PORT": 8081, "Debug": False},
'prd': {"PORT": 8081, "Debug": False}
}
# DNS Resolver
# test环境dns为办公网DNS
DNS = {
"test": ['8.8.8.8'],
"pre": ['8.8.8.8'],
'prd': ['8.8.8.8']
}
# MYSQL CONFIG
MYSQL_CONFIG = {
'test': 'mysql://root:[email protected]:3306/waf_v4?charset=utf8mb4',
'pre': '',
'prd': ''
}
# REDIS_CONFIG
REDIS_CONFIG = {
'test': {
'host': '1.2.2.1',
'port': 6379,
'password': None,
'db': 1
},
'pre': {},
'prd': {},
}
# auth error
ERROR_COUNT = 3
AUTH_SPAN_TIME = 1 # 分钟