-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.json.example
More file actions
76 lines (76 loc) · 3.39 KB
/
Copy pathconfig.json.example
File metadata and controls
76 lines (76 loc) · 3.39 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
{
"bases": [
{
"Srvr": "Server",
"Ref": "Basename",
"publications": [
{
"name": "test4",
"enable": true,
"enableStandardOData": false,
"ws": {
"publishExtensionsByDefault": false,
"wsList": [
{
"name": "testws",
"alias": "testws.1cws",
"enable": "true",
"reuseSessions": "autouse",
"sessionMaxAge": "20",
"poolSize": "10",
"poolTimeout": "5"
}
]
},
"httpServices": {
"publishExtensionsByDefault": true,
"publishByDefault": false,
"hsList": [
{
"name": "tesths",
"rootUrl": "tesths",
"enable": "true",
"reuseSessions": "autouse",
"sessionMaxAge": "20",
"poolSize": "10",
"poolTimeout": "5"
}
]
},
"oidc": {
"providers": [
{
"name": "TestConnector",
"title": "TestConnector",
"authenticationClaimName": "email",
"icon": "https://www.TestConnector.com/images/branding/logo-cropped.png",
"providerconfig": {
"issuer": "https://auth.example.ru",
"authorization_endpoint": "https://auth.example.ru/api/oidc/authorization",
"token_endpoint": "https://auth.example.ru/api/oidc/token",
"jwks_uri": "https://auth.example.ru/jwks.json",
"userinfo_endpoint": "https://auth.example.ru/api/oidc/userinfo",
"response_types_supported": [
"token id_token"
],
"scopes_supported": [
"openid",
"email",
"profile"
]
},
"clientconfig": {
"authority": "https://auth.example.ru/api/oidc/authorization",
"client_id": "1cbase",
"redirect_uri": "https://1c.example.ru/tg_bot/authform.html",
"response_type": "token id_token",
"scope": "openid email"
}
}
]
}
}
]
}
]
}