add TOKENINFO_URL var
This commit is contained in:
parent
166bd58b9f
commit
4193b863d5
@ -40,6 +40,9 @@ OAuth2 url for token information.
|
|||||||
## USER_URL
|
## USER_URL
|
||||||
OAuth2 url for getting available users, the username will be appended to the end.
|
OAuth2 url for getting available users, the username will be appended to the end.
|
||||||
|
|
||||||
|
## TOKENINFO_URL
|
||||||
|
OAuth2 url for requestion information about a token.
|
||||||
|
|
||||||
## CLIENT_ID
|
## CLIENT_ID
|
||||||
Id of the OAuth2 application.
|
Id of the OAuth2 application.
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
grant_url = {{ getenv "GRANT_URL" }}
|
grant_url = {{ getenv "GRANT_URL" }}
|
||||||
client_id = {{ getenv "CLIENT_ID" }}
|
client_id = {{ getenv "CLIENT_ID" }}
|
||||||
client_secret = {{ getenv "CLIENT_SECRET" }}
|
client_secret = {{ getenv "CLIENT_SECRET" }}
|
||||||
tokeninfo_url = {{ getenv "INTROSPECTION_URL" }}
|
tokeninfo_url = {{ getenv "TOKENINFO_URL" }}
|
||||||
introspection_url = {{ getenv "INTROSPECTION_URL" }}
|
introspection_url = {{ getenv "INTROSPECTION_URL" }}
|
||||||
introspection_mode = {{ getenv "INTROSPECTION_MODE" "post" }}
|
introspection_mode = {{ getenv "INTROSPECTION_MODE" "post" }}
|
||||||
username_attribute = username
|
username_attribute = username
|
||||||
|
Loading…
Reference in New Issue
Block a user