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
189 lines (189 loc) · 5.79 KB
/
Copy pathconfig.schema.json
File metadata and controls
189 lines (189 loc) · 5.79 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
{
"$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"
},
"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",
"properties": {
"type": { "type": "string" },
"enabled": { "type": "boolean" },
"options": { "type": "object" }
},
"required": ["type", "enabled"]
},
"routeAuthRule": {
"type": "object",
"properties": {
"pattern": { "type": "string" },
"adminOnly": { "type": "boolean" },
"loginRequired": { "type": "boolean" }
}
}
},
"additionalProperties": false
}