forked from tandrup/docker-private-bower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbowerConfig.json
47 lines (47 loc) · 1.2 KB
/
bowerConfig.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
{
"port": 5678,
"registryFile": "/data/bowerRepository.json",
"timeout": 144000,
"public": {
"disabled": false,
"registry": "http://bower.herokuapp.com/packages",
"registryFile": "/data/bowerRepositoryPublic.json",
"whitelist": [],
"blacklist": []
},
"authentication": {
"enabled": false,
"key": "password"
},
"repositoryCache": {
"cachePrivate": false,
"git": {
"enabled": true,
"cacheDirectory": "/data/gitRepoCache",
"host": "0.0.0.0",
"port": 6789,
"publicAccessURL" : "<address>:6789",
"refreshTimeout": 10
},
"svn": {
"enabled": true,
"cacheDirectory": "/data/svnRepoCache",
"host": "0.0.0.0",
"port": 7891,
"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"
}
}