forked from fabioes/IdentityServer4.Quickstart.UI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.development.json
More file actions
119 lines (119 loc) · 3.12 KB
/
Copy pathappsettings.development.json
File metadata and controls
119 lines (119 loc) · 3.12 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
{
"Serilog": {
"MinimumLevel": "Debug"
},
"RedisConnectionString": "redis1,redis2,redis3",
"TenantServiceUri": "http://tenant-service",
"AccessServiceUri": "http://access-service",
"ExternalIdpOptions": {
// Use some external idp
"Authority": "https://security.site.com/uas/",
"ClientId": "657ce44e-10a2-4b66-9078-7f1acf92811f",
"ClientSecret": "iB6pD91ZPPf2OWcfkAWZIF5E-XXXXX",
"ROClientId": "6ef35ef4-46d8-47a6-92ee-b8913f8fe8bd",
"ROClientSecret": "WA9EHZkepW8BFUr1sSc3Zxt_KjOsrhrR"
},
"ZendeskOptions": {
"Subdomain": "vendor1532009029",
"SharedSecret": "8UzdGMY5p9jQ4mRcHeoIbM4mfx4BfWIDhlarh9LIGKRjf2Pq"
},
"IdentityServerClients": {
"WebAppClients": [
{
"ClientId": "657ce44e-10a2-4b66-9078-7f1acf92811f",
"ClientSecret": "iB6pD91ZPPf2OWcfkAWZIF5E-WTsbACr",
"RedirectUri": "http://localhost:5100/signin-oidc",
"AllowedScopes": [
"graph-api",
"graph-api.backend",
"api"
],
"RequirePkce": false,
"AllowedGrantTypes": [ "authorization_code" ]
//,"SubscriptionModule": "TESTAPP"
},
{
"ClientId": "mvc-testapp",
"RedirectUri": "http://localhost:52624/signin-oidc",
"AllowedScopes": [
"graph-api",
"graph-api.backend",
"api"
],
"RequirePkce": false,
"AllowedGrantTypes": [ "authorization_code" ]
//,"SubscriptionModule": "TESTAPP"
},
{
"ClientId": "local-menu",
"RedirectUri": "http://localhost/Menu/"
},
{
"ClientId": "local-home",
"RedirectUri": "http://localhost:4200/",
"AllowedCorsOrigins": [ "http://localhost:4200" ],
"AllowedScopes": [
"graph-api"
]
}
],
"NativeAppClients": [
{
"ClientId": "daily-app-client",
"RedirectUri": "com.company.daily.dev:/oauth2callback",
"AllowedScopes": [
"graph-api"
]
},
{
"ClientId": "manager-app-client",
"RedirectUri": "com.company.manager.dev:/oauth2callback",
"AllowedScopes": [
"graph-api"
]
},
{
"ClientId": "cli-app-client",
"RedirectUri": "http://localhost:3000",
"AllowedScopes": [
"graph-api"
]
}
],
"ServiceClients": [
{
"ClientId": "cli-svc-client",
"ClientSecret": "some-secret-2019",
"AllowedScopes": [
"config-api",
"config-api.admin"
]
},
{
"ClientId": "another-svc-client",
"ClientSecret": "some-secret-2019",
"AllowedScopes": [
"config-api",
"graph-api",
"graph-api.backend"
]
},
{
"ClientId": "external-svc-client",
"ClientSecret": "7F9EAAAA63354EDD98B0CFFFA8D65DDF",
"AllowedScopes": [
"external-callback"
]
}
],
"ResourceOwnerClients": [
{
"ClientId": "cli-ro-client",
"ClientSecret": "some-secret-2019",
"AllowedScopes": [
"graph-api"
]
}
]
}
}