-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathauiConfiguration.json
More file actions
57 lines (57 loc) · 1.61 KB
/
auiConfiguration.json
File metadata and controls
57 lines (57 loc) · 1.61 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
{
"oidcConfig": {
"auiWebClient": {
"opHost": "https://%(hostname)s",
"clientId": "%(admin_ui_client_id)s",
"clientSecret": "%(admin_ui_client_encoded_pw)s",
"scopes": [
"openid",
"profile",
"user_name",
"email",
"clientinfo"
],
"acrValues": [
"%(adminui_authentication_mode)s"
],
"redirectUri": "https://%(hostname)s/admin",
"postLogoutUri": "https://%(hostname)s/admin",
"frontchannelLogoutUri": "https://%(hostname)s/admin/logout",
"additionalParameters": []
},
"auiBackendApiClient": {
"opHost": "https://%(hostname)s",
"clientId": "%(admin_ui_web_client_id)s",
"clientSecret": "%(admin_ui_web_client_encoded_pw)s",
"introspectionEndpoint": "https://%(hostname)s/jans-auth/restv1/introspection",
"tokenEndpoint": "https://%(hostname)s/jans-auth/restv1/token",
"scopes": [
"openid",
"profile",
"user_name",
"email"
]
}
},
"uiConfig": {
"sessionTimeoutInMins": 30,
"allowSmtpKeystoreEdit": true
},
"licenseConfig": {
"ssa": "%(ssa)s",
"scanLicenseApiHostname": "%(scan_license_api_hostname)s",
"licenseHardwareKey": "%(license_hardware_key)s",
"intervalForSyncLicenseDetailsInDays": 30,
"oidcClient": {
"opHost": "%(op_host)s",
"clientId": "%(oidc_client_id)s",
"clientSecret": "%(oidc_client_secret)s",
"tokenEndpoint": null,
"redirectUri": null,
"postLogoutUri": null,
"frontchannelLogoutUri": null,
"scopes": null,
"acrValues": null
}
}
}