Skip to content

Commit

Permalink
feat: release (fatedier#3205)
Browse files Browse the repository at this point in the history
Co-authored-by: blizard863 <[email protected]>
  • Loading branch information
blizard863 and detry863 authored Dec 13, 2022
1 parent af0b793 commit b2e3946
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Release.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### New

* Add oidc_scope parameter to frpc when authentication_method = oidc .


### Improve

* Adjust http group load balancing to forward requests to each frpc proxy round robin. Previous behavior is always forwarding requests to single proxy in the case of single concurrency.
* Upgrade oidc and oauth2 package which is forward compatible.
5 changes: 5 additions & 0 deletions conf/frpc_full.ini
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ authenticate_new_work_conns = false
# auth token
token = 12345678

authentication_method =

# oidc_client_id specifies the client ID to use to get a token in OIDC authentication if AuthenticationMethod == "oidc".
# By default, this value is "".
oidc_client_id =
Expand All @@ -51,6 +53,9 @@ oidc_client_secret =
# oidc_audience specifies the audience of the token in OIDC authentication if AuthenticationMethod == "oidc". By default, this value is "".
oidc_audience =

# oidc_scope specifies the permisssions of the token in OIDC authentication if AuthenticationMethod == "oidc". By default, this value is "".
oidc_scope =

# oidc_token_endpoint_url specifies the URL which implements OIDC Token Endpoint.
# It will be used to get an OIDC token if AuthenticationMethod == "oidc". By default, this value is "".
oidc_token_endpoint_url =
Expand Down

0 comments on commit b2e3946

Please sign in to comment.