File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- SD_BACKEND_URL="/v2"
1
+ SD_BACKEND_URL="https://localhost:8080 /v2"
2
2
3
3
SD_CLIENT_ID=""
4
- SD_AUTHORITY =""
5
- SD_REDIRECT=" /signin-oidc"
6
- SD_LOGOUT_REDIRECT=" /signout-callback-oidc"
4
+ SD_AUTHORITY_URL =""
5
+ SD_REDIRECT_URL="https://localhost /signin-oidc"
6
+ SD_LOGOUT_REDIRECT_URL="https://localhost /signout-callback-oidc"
7
7
SD_AUTH_SECRET=""
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ export function OIDCProvider({ children }: { children: ReactNode }): ReactNode {
22
22
onSigninCallback = { ( ) => Reload ( "/" ) }
23
23
onSignoutCallback = { ( ) => Reload ( "/" ) }
24
24
matchSignoutCallback = { ( args ) => window . location . href === args . post_logout_redirect_uri }
25
- authority = { process . env . SD_AUTHORITY }
26
- post_logout_redirect_uri = { process . env . SD_LOGOUT_REDIRECT }
27
- redirect_uri = { process . env . SD_REDIRECT }
25
+ authority = { process . env . SD_AUTHORITY_URL }
26
+ post_logout_redirect_uri = { process . env . SD_LOGOUT_REDIRECT_URL }
27
+ redirect_uri = { process . env . SD_REDIRECT_URL }
28
28
client_secret = { process . env . SD_AUTH_SECRET }
29
29
>
30
30
< AuthHandler />
You can’t perform that action at this time.
0 commit comments