-
Notifications
You must be signed in to change notification settings - Fork 117
/
config.json-dist
128 lines (128 loc) · 3.27 KB
/
config.json-dist
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"site_name" : "bip.io",
"domain": "localhost",
"domain_public" : "localhost:5000",
"website_public": "http://localhost",
"cdn_public": "http://localhost/static",
"oembed_host": "http://localhost",
"site_emitter": "https://bip.io",
"proto_public": "http://",
"crons" : {
"stat" : "0 0 * * * *",
"trigger" : "0 */15 * * * *",
"expire" : "0 0 * * * *",
"transforms_compact": "0 0 */8 * * *",
"transforms_fetch": "0 0 */12 * * *"
},
"timezone" : "Asia/Tokyo",
"server": {
"port": 5000,
"host" : "127.0.0.1",
"sessionSecret" : "",
"forks": 1,
"smtp_bips" : false,
"logLevel" : "info",
"ssl" : {
"key" : "",
"cert" : ""
}
},
"mailer": {
"host": "localhost",
"port": 25
},
"dbMongo": {
"connect" : "localhost/bipio"
},
"rabbit": {
"host" : "localhost",
"vhost" : "",
"auth": {
"username": "guest",
"password": "guest"
},
"exchanges": {
"bastion_generic": {
"queue_default": {
"name": "queue_bastion",
"config": {
"durable": true,
"autoDelete": false
}
},
"route_default": "default",
"cfg": {
"type": "direct",
"durable": true,
"autoDelete": false,
"confirm" : true
}
},
"bastion_jobs": {
"queue_default": {
"name": "queue_jobs",
"config": {
"durable": true,
"autoDelete": false
}
},
"route_default": "default",
"cfg": {
"type": "direct",
"durable": true,
"autoDelete": false,
"confirm" : true
}
},
"bastion_ctl": {
"queue_default": {
"name": "queue_bastion_ctl",
"config": {
"durable": true,
"autoDelete": true
}
},
"route_default": "default",
"cfg": {
"type": "fanout",
"durable": false,
"autoDelete": false,
"confirm" : true
}
}
},
"defaultExchange": "public_inbound"
},
"k": {},
"jwtKey" : "",
"modules" : {
"auth": {
"strategy" : "native"
},
"cdn" : {
"strategy" : "fs",
"config" : {
"data_dir" : "data"
}
}
},
"pods": {
"email" : {
"mailer": {
"host": "localhost"
}
},
"templater" : {},
"flow" : {},
"syndication" : {},
"http" : {},
"time" : {},
"math" : {},
"html" : {},
"crypto" : {}
},
"transforms" : {
"fetch" : true,
"syncFrom" : "https://api.bip.io"
}
}