Skip to content

Commit 9c4cfd9

Browse files
committed
Add OpenID Connect configuration to appsettings.json
This commit introduces new settings for OpenID Connect authentication in the `appsettings.json` file. The added parameters include `Authority`, `ClientId`, `ClientSecret`, `RedirectUri`, and `RequireHttps`, which are necessary for enabling secure authentication in the application. #86
1 parent 1d786ff commit 9c4cfd9

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/appsettings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@
99
"Endpoints": {
1010
"http": {
1111
"Port": 6264
12+
},
13+
"OpenIdConnect": {
14+
"Authority": "<YOUR-AUTHORITY-URL>",
15+
"ClientId": "<YOUR-CLIENT-ID>",
16+
"ClientSecret": "<YOUR-CLIENT-SECRET>",
17+
"RedirectUri": "/signin-oidc",
18+
"RequireHttps": false
1219
}
1320
}
1421
}

0 commit comments

Comments
 (0)