Skip to content

Commit

Permalink
add requiredment for ending forward slash
Browse files Browse the repository at this point in the history
  • Loading branch information
FBoucher committed Nov 5, 2020
1 parent 45b583a commit cc42b68
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,10 @@ Now, we need to configure the brand new Ad App registration. Still from the Azur

## Configure Backend and Frontend to Work Together


Now in your GitHub it's time to update the settings. THe code need to know the AD app to use and the Azure Function to call. Update those values inside `TinyBlazorAdmin\wwwroot\appsettings.json`

> The **Endpoint** _must_ ends with a `/`
```json
{
"AzureAd": {
Expand All @@ -100,7 +101,7 @@ Now in your GitHub it's time to update the settings. THe code need to know the A
"ValidateAuthority": true
},
"UrlShortenerSecuredService": {
"Endpoint": "https://__azFunction_URL__.azurewebsites.net"
"Endpoint": "https://__azFunction_URL__.azurewebsites.net/"
}
}
```
Expand Down

0 comments on commit cc42b68

Please sign in to comment.