-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
49 lines (49 loc) · 1.27 KB
/
config.json
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
{
"port": 5678,
"registryFile": "./storage/repository.json",
"timeout": 144000,
"public": {
"disabled": false,
"registry": "http://bower.herokuapp.com/packages",
"registryFile": "./storage/repository-public.json",
"whitelist": [],
"blacklist": []
},
"authentication": {
"enabled": false,
"key": "password"
},
"repositoryCache": {
"cachePrivate": false,
"git": {
"enabled": true,
"cacheDirectory": "./storage/git-repo-cache",
"host": "0.0.0.0",
"port": 6789,
"protocol": "git",
"publicAccessURL" : "<address>:6789",
"refreshTimeout": 10
},
"svn": {
"enabled": true,
"cacheDirectory": "./storage/svn-repo-cache",
"host": "0.0.0.0",
"port": 7891,
"protocol": "svn",
"publicAccessURL" : "<address>:7891",
"refreshTimeout": 10
}
},
"proxySettings" : {
"enabled": false,
"host": "proxy",
"username": "name",
"password" : "pass",
"port": 8080,
"tunnel": false
},
"log4js" : {
"enabled": false,
"configPath" : "log4js.conf.json"
}
}