forked from orlabs/orange
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorange.conf
More file actions
executable file
·46 lines (46 loc) · 1013 Bytes
/
Copy pathorange.conf
File metadata and controls
executable file
·46 lines (46 loc) · 1013 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"plugins": [
"stat",
"monitor",
"redirect",
"rewrite",
"basic_auth",
"key_auth",
"waf",
"divide"
],
"store": "mysql",
"store_mysql": {
"timeout": 5000,
"connect_config": {
"host": "127.0.0.1",
"port": 3306,
"database": "orange",
"user": "root",
"password": "",
"max_packet_size": 1048576
},
"pool_config": {
"max_idle_timeout": 10000,
"pool_size": 3
},
"desc": "mysql configuration"
},
"dashboard": {
"auth": false,
"session_secret": "y0ji4pdj61aaf3f11c2e65cd2263d3e7e5",
"whitelist": [
"^/auth/login$",
"^/error/$"
]
},
"api": {
"auth_enable": true,
"credentials": [
{
"username":"api_username",
"password":"api_password"
}
]
}
}