-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.json
More file actions
37 lines (37 loc) · 875 Bytes
/
config.json
File metadata and controls
37 lines (37 loc) · 875 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
{
"service_port": 9000,
"mongo_host": "test_host",
"mongo_db": "test_db",
"certificate_authorities": "/path/to/cas",
"certificate": "/path/to/cert",
"certificate_key": "/path/to/key",
"service_token": "token",
"supported_auth_types": [
"x509"
],
"supported_auth_methods": [
"api-key",
"headers"
],
"supported_service_types": [
"ams",
"web-api",
"custom"
],
"verify_ssl": true,
"trust_unknown_cas": false,
"verify_certificate": true,
"service_types_paths": {
"ams": "/v1/users:byUUID/{{identifier}}}",
"web-api": "/api/v2/admin/users:byID/{{identifier}}?export=flat"
},
"service_types_retrieval_fields": {
"ams": "token",
"web-api": "api_key"
},
"syslog_enabled": false,
"server_read_timeout": 5,
"server_header_read_timeout": 5,
"server_write_timeout": 15,
"server_idle_timeout": 60
}