-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathtest-e2e.proxy.config.json
More file actions
47 lines (47 loc) · 950 Bytes
/
test-e2e.proxy.config.json
File metadata and controls
47 lines (47 loc) · 950 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
47
{
"cookieSecret": "integration-test-cookie-secret",
"sessionMaxAgeHours": 12,
"rateLimit": {
"windowMs": 60000,
"limit": 150
},
"tempPassword": {
"sendEmail": false,
"emailConfig": {}
},
"authorisedList": [
{
"project": "test-owner",
"name": "test-repo",
"url": "https://git-server:8443/test-owner/test-repo.git"
},
{
"project": "e2e-org",
"name": "sample-repo",
"url": "https://git-server:8443/e2e-org/sample-repo.git"
}
],
"sink": [
{
"type": "fs",
"enabled": false
},
{
"type": "mongo",
"connectionString": "mongodb://mongodb:27017/gitproxy",
"options": {
"useNewUrlParser": true,
"useUnifiedTopology": true,
"tlsAllowInvalidCertificates": false,
"ssl": false
},
"enabled": true
}
],
"authentication": [
{
"type": "local",
"enabled": true
}
]
}