-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathappsettings.json
35 lines (35 loc) · 936 Bytes
/
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
35
{
"AzureAd": {
"Instance": "https://login.microsoftonline.com/",
"TenantId": "Enter_the_Tenant_Id_Here",
"ClientId": "Enter_the_Application_Id_Here",
"ClientCredentials": [
{
"SourceType": "ClientSecret",
"ClientSecret": "Enter_the_Client_Secret_Here"
}
// {
// "SourceType": "StoreWithDistinguishedName",
// "CertificateStorePath": "CurrentUser/My",
// "CertificateDistinguishedName": "CN=CallGraphBFF"
// }
],
"ClientCapabilities": [
"CP1"
],
"CallbackPath": "/api/auth/signin-oidc",
"SignedOutCallbackPath": "/api/auth/signout-oidc"
},
"DownstreamApi": {
"BaseUrl": "https://graph.microsoft.com/v1.0",
"Scopes": "User.Read"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*"
}