-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
34 lines (34 loc) · 1.15 KB
/
appsettings.json
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
{
"AzureAdB2C": {
"Instance": "https://halzelb2c.b2clogin.com/",
"ClientId": "2944900f-87f0-41c6-8d81-e03a4c6aa0ec",
"CallbackPath": "/signin-oidc",
"Domain": "halzelb2c.onmicrosoft.com",
"ClientSecret": "See user secrets",
"ClientCertificates" : [
],
"SignedOutCallbackPath": "/signout/B2C_1_susi",
"SignUpSignInPolicyId": "b2c_1_susi",
"ResetPasswordPolicyId": "b2c_1_reset",
"EditProfilePolicyId": "b2c_1_edit_profile"
},
"DownstreamApi": {
/*
'Scopes' contains space separated scopes of the Web API you want to call. This can be:
- a scope for a V2 application (for instance api:b3682cc7-8b30-4bd2-aaba-080c6bf0fd31/access_as_user)
- a scope corresponding to a V1 application (for instance <App ID URI>/.default, where <App ID URI> is the
App ID URI of a legacy v1 Web application
Applications are registered in the https:portal.azure.com portal.
*/
"BaseUrl": "webApi",
"Scopes": "user.read"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*"
}