forked from finos/git-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.schema.json
More file actions
300 lines (300 loc) · 11.2 KB
/
config.schema.json
File metadata and controls
300 lines (300 loc) · 11.2 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
{
"$schema": "https://json-schema.org/draft-07/schema",
"$id": "https://git-proxy.finos.org/config.schema.json",
"title": "GitProxy configuration file",
"description": "Configuration for customizing git-proxy",
"type": "object",
"properties": {
"proxyUrl": { "type": "string" },
"cookieSecret": { "type": "string" },
"sessionMaxAgeHours": { "type": "number" },
"api": {
"description": "Third party APIs",
"type": "object",
"properties": {
"ls": {
"type": "object",
"description": "Configuration used in conjunction with ActiveDirectory auth, which relates to a REST API used to check user group membership, as opposed to direct querying via LDAP.<br />If this configuration is set direct querying of group membership via LDAP will be disabled.",
"properties": {
"userInADGroup": {
"type": "string",
"description": "URL template for a GET request that confirms a user's membership of a specific group. Should respond with a non-empty 200 status if the user is a member of the group, an empty response or non-200 status indicates that the user is not a group member. If set, this URL will be queried and direct queries via LDAP will be disabled. The template should contain the following string placeholders, which will be replaced to produce the final URL:<ul><li>\"<domain>\": AD domain,</li><li>\"<name>\": The group name to check membership of.</li><li>\"<id>\": The username to check group membership for.</li></ul>",
"examples": [
"https://somedomain.com/some/path/checkUserGroups?domain=<domain>&name=<name>&id=<id>"
]
}
}
},
"github": {
"type": "object",
"properties": {
"baseUrl": {
"type": "string",
"format": "uri",
"examples": ["https://api.github.com"]
}
}
}
}
},
"commitConfig": {
"description": "Enforce rules and patterns on commits including e-mail and message",
"type": "object"
},
"attestationConfig": {
"description": "Customisable questions to add to attestation form",
"type": "object"
},
"domains": {
"description": "Provide domains to use alternative to the defaults",
"type": "object"
},
"rateLimit": {
"description": "API Rate limiting configuration.",
"type": "object",
"properties": {
"windowMs": {
"type": "number",
"description": "How long to remember requests for, in milliseconds (default 10 mins)."
},
"limit": {
"type": "number",
"description": "How many requests to allow (default 150)."
},
"statusCode": {
"type": "number",
"description": "HTTP status code after limit is reached (default is 429)."
},
"message": {
"type": "string",
"description": "Response to return after limit is reached."
}
},
"required": ["windowMs", "limit"],
"additionalProperties": false
},
"privateOrganizations": {
"description": "Pattern searches for listed private organizations are disabled",
"type": "array"
},
"urlShortener": {
"description": "Customisable URL shortener to share in proxy responses and warnings",
"type": "string"
},
"contactEmail": {
"description": "Customisable e-mail address to share in proxy responses and warnings",
"type": "string"
},
"csrfProtection": {
"description": "Flag to enable CSRF protections for UI",
"type": "boolean"
},
"plugins": {
"type": "array",
"description": "List of plugins to integrate on GitProxy's push or pull actions. Each value is either a file path or a module name.",
"items": {
"type": "string"
}
},
"authorisedList": {
"description": "List of repositories that are authorised to be pushed to through the proxy.",
"type": "array",
"items": {
"$ref": "#/definitions/authorisedRepo"
}
},
"sink": {
"description": "List of database sources. The first source in the configuration with enabled=true will be used.",
"type": "array",
"items": {
"$ref": "#/definitions/database"
}
},
"authentication": {
"description": "List of authentication sources. The first source in the configuration with enabled=true will be used.",
"type": "array",
"items": {
"$ref": "#/definitions/authentication"
}
},
"tempPassword": {
"description": "Toggle the generation of temporary password for git-proxy admin user",
"type": "object",
"properties": {
"sendEmail": { "type": "boolean" },
"emailConfig": {
"description": "Generic object to configure nodemailer. For full type information, please see https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nodemailer",
"type": "object"
}
}
},
"apiAuthentication": {
"description": "List of authentication sources for API endpoints. May be empty, in which case all endpoints are public.",
"type": "array",
"items": {
"$ref": "#/definitions/authentication"
}
},
"tls": {
"description": "TLS configuration for secure connections",
"type": "object",
"properties": {
"enabled": { "type": "boolean" },
"key": { "type": "string" },
"cert": { "type": "string" }
},
"required": ["enabled", "key", "cert"]
},
"configurationSources": {
"enabled": { "type": "boolean" },
"reloadIntervalSeconds": { "type": "number" },
"merge": { "type": "boolean" },
"sources": {
"type": "array",
"items": {
"type": "object",
"description": "Configuration source"
}
}
},
"uiRouteAuth": {
"description": "UI routes that require authentication (logged in or admin)",
"type": "object",
"properties": {
"enabled": { "type": "boolean" },
"rules": {
"type": "array",
"items": {
"$ref": "#/definitions/routeAuthRule"
}
}
}
}
},
"definitions": {
"authorisedRepo": {
"type": "object",
"properties": {
"project": { "type": "string" },
"name": { "type": "string" },
"url": { "type": "string" }
},
"required": ["project", "name", "url"]
},
"database": {
"type": "object",
"properties": {
"type": { "type": "string" },
"enabled": { "type": "boolean" },
"connectionString": { "type": "string" },
"options": { "type": "object" },
"params": { "type": "object" }
},
"required": ["type", "enabled"]
},
"authentication": {
"type": "object",
"description": "Configuration for an authentication source",
"oneOf": [
{
"title": "Local Auth Config",
"description": "Configuration for the use of the local database as the authentication source.",
"properties": {
"type": { "type": "string", "const": "local" },
"enabled": { "type": "boolean" }
},
"required": ["type", "enabled"]
},
{
"title": "Active Directory Auth Config",
"description": "Configuration for Active Directory authentication.",
"properties": {
"type": { "type": "string", "const": "ActiveDirectory" },
"enabled": { "type": "boolean" },
"adminGroup": {
"type": "string",
"description": "Group that indicates that a user is an admin"
},
"userGroup": {
"type": "string",
"description": "Group that indicates that a user should be able to login to the Git Proxy UI and can work as a reviewer"
},
"domain": { "type": "string", "description": "Active Directory domain" },
"adConfig": {
"type": "object",
"description": "Additional Active Directory configuration supporting LDAP connection which can be used to confirm group membership. For the full set of available options see the activedirectory 2 NPM module docs at https://www.npmjs.com/package/activedirectory2#activedirectoryoptions <br /><br />Please note that if the Third Party APIs config `api.ls.userInADGroup` is set then the REST API it represents is used in preference to direct querying of group memebership via LDAP.",
"properties": {
"url": {
"type": "string",
"description": "Active Directory server to connect to, e.g. `ldap://ad.example.com`."
},
"baseDN": {
"type": "string",
"description": "The root DN from which all searches will be performed, e.g. `dc=example,dc=com`."
},
"username": {
"type": "string",
"description": "An account name capable of performing the operations desired."
},
"password": {
"type": "string",
"description": "Password for the given `username`."
}
},
"required": ["url", "baseDN", "username", "password"]
}
},
"required": ["type", "enabled", "adminGroup", "userGroup", "domain"]
},
{
"title": "Open ID Connect Auth Config",
"description": "Configuration for Open ID Connect authentication.",
"properties": {
"type": { "type": "string", "const": "openidconnect" },
"enabled": { "type": "boolean" },
"oidcConfig": {
"type": "object",
"description": "Additional OIDC configuration.",
"properties": {
"issuer": { "type": "string" },
"clientID": { "type": "string" },
"clientSecret": { "type": "string" },
"callbackURL": { "type": "string" },
"scope": { "type": "string" }
},
"required": ["issuer", "clientID", "clientSecret", "callbackURL", "scope"]
}
},
"required": ["type", "enabled", "oidcConfig"]
},
{
"title": "JWT Auth Config",
"description": "Configuration for JWT authentication.",
"properties": {
"type": { "type": "string", "const": "jwt" },
"enabled": { "type": "boolean" },
"jwtConfig": {
"type": "object",
"description": "Additional JWT configuration.",
"properties": {
"clientID": { "type": "string" },
"authorityURL": { "type": "string" }
},
"required": ["clientID", "authorityURL"]
}
},
"required": ["type", "enabled", "jwtConfig"]
}
]
},
"routeAuthRule": {
"type": "object",
"properties": {
"pattern": { "type": "string" },
"adminOnly": { "type": "boolean" },
"loginRequired": { "type": "boolean" }
}
}
},
"additionalProperties": false
}