-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathconfig.defaults.json
More file actions
83 lines (83 loc) · 1.82 KB
/
config.defaults.json
File metadata and controls
83 lines (83 loc) · 1.82 KB
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
{
"auth": {
"enabled": true,
"sessionMessages": true,
"loginEndpoint": "/nonstop/auth/login",
"authEndpoint": "/nonstop/auth/github",
"github": {
"organization": "YOUR_GITHUB_ORG",
"clientId": "YOUR_CLIENT_ID_HERE",
"clientSecret": "YOUR_CLIENT_SECRET_HERE",
"callbackUrl": "http://localhost:8048/nonstop/auth/github/callback"
}
},
"indexUrl": "http://nsindex.com:4444",
"client" : {
"luxAutohost": {
"filter": {
"actions": [ ]
},
"metrics": {
"timeout": 15000,
"messages": 500
},
"logging": {
"timeout": 5000,
"messages": 25
}
},
"themeOptions": [],
"featureOptions": {
"config": true
},
"nonstopIndexApi": "http://nsindex.com:4444/api",
"headers": {
"authorization": "Bearer SooPurSeekretTokin"
}
},
"name": "nonstop-index-ui",
"environment": "dev",
"rootUrl": "",
"host": {
"resources": "server/resource",
"appName": "nonstop-index-ui",
"port": 8048,
"socketIO": false,
"noOptions": true,
"anonymous": [ "/nonstop/_status", "/nonstop/auth/login", "/nonstop/images", "/nonstop/js", "/nonstop/css", "/nonstop/fonts" ],
"modules": [ "autohost-logging-collector", "autohost-metrics-collector", "autohost-pubsub" ],
"apiPrefix": "",
"static": {
"path": "public",
"maxAge": "1d"
},
"urlPrefix": "/nonstop"
},
"logging": {
"logChannel": "log",
"namespace": "nonstop-index-ui",
"adapters": {
"stdOut": {
"level": 5,
"topic": "autohost.access,nonstop-index-ui.#",
"bailIfDebug": true
}
}
},
"metrics": {
"fanout": "metronic.all.ex",
"topic": "metronic.topic.ex"
},
"session": {
"config": {
"name": "nonstop-index-ui.sid",
"secret": "I eat my peas with honey, I've done it all my life"
},
"redis" : {
"enabled" : false,
"host": "127.0.0.1",
"port": 6379,
"prefix" : "nonstop-index-ui"
}
}
}