Skip to content

Commit c5d64c4

Browse files
committed
Refactor appsettings.json structure
Reorganized the JSON structure by removing the "Endpoints" section and moving the "OpenIdConnect" configuration outside of it. The key-value pairs for "OpenIdConnect" remain unchanged, and the HTTP port number has been removed. #87
1 parent 9c4cfd9 commit c5d64c4

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/appsettings.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +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
1912
}
13+
},
14+
"OpenIdConnect": {
15+
"Authority": "<YOUR-AUTHORITY-URL>",
16+
"ClientId": "<YOUR-CLIENT-ID>",
17+
"ClientSecret": "<YOUR-CLIENT-SECRET>",
18+
"RedirectUri": "/signin-oidc",
19+
"RequireHttps": false
2020
}
2121
}

0 commit comments

Comments
 (0)