Skip to content

Commit

Permalink
app-settings
Browse files Browse the repository at this point in the history
  • Loading branch information
dhindrik committed Sep 20, 2024
1 parent 66223d4 commit adf8b8a
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion TinyInsights.WebServer/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,19 @@
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
"AllowedHosts": "*",
"AzureAd": {
"Instance": "https://login.microsoftonline.com/",
"Domain": "{YOUR-DOMAIN}",
"TenantId": "{YOUR-TENANT-ID}",
"ClientId": "{YOUR-APP-CLIENT-ID}",
"CallbackPath": "/signin-oidc",
"ClientCredentials": [
{
"SourceType": "ClientSecret",
"ClientSecret": "{YOUR-APP-CLIENT-SECRET}"
}
]
},
"ApplicationInsightsAppId": "{YOUR-APPLICATION-INSIGHT-APP-ID}"
}

0 comments on commit adf8b8a

Please sign in to comment.