File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ This module read enviroment variables directly.
77
77
| OAUTH_REGISTER | ` false ` | Add params register to Oauth Server |
78
78
| OAUTH_REDIRECT_WHITELIST | - | Redirect path after success login whitelist, for multiple value, use ` ; ` as delimeter |
79
79
| OAUTH_DENIED_REDIRECT | ` Same as OAUTH_HOME ` | Redirect path after user after denying the authorization request |
80
+ | OAUTH_AUTHORIZE_HOST | ` Same as OAUTH_HOST ` | Host for Authorization token |
80
81
| OAUTH_AUTHORIZE_PATH | ` /oauth/authorize ` | URL path to request an authorization code |
81
82
| OAUTH_TOKEN_PATH | ` /oauth/token ` | URL path to obtain access tokens |
82
83
| OAUTH_REVOKE_PATH | ` /oauth/revoke ` | URL path to revoke access tokens |
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export function getClient (profile: string) {
10
10
auth : {
11
11
tokenHost : getEnv ( profile , 'HOST' ) ,
12
12
tokenPath : getEnv ( profile , 'TOKEN_PATH' ) ,
13
+ authorizeHost : getEnv ( profile , 'AUTHORIZE_HOST' ) ,
13
14
authorizePath : getEnv ( profile , 'AUTHORIZE_PATH' ) ,
14
15
revokePath : getEnv ( profile , 'REVOKE_PATH' ) ,
15
16
refreshPath : getEnv ( profile , 'REFRESH_PATH' ) ,
You can’t perform that action at this time.
0 commit comments