You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/configuration/_index.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -158,6 +158,7 @@ weight: 2
158
158
| \--enable-request-upstream-compression | enables asking upstream for compression, by adding Accept-Encoding: gzip header and decompressing response from upstream | true | PROXY_ENABLE_REQUEST_UPSTREAM_COMPRESSION
159
159
| \--enable-accept-encoding-header | pass Accept-Encoding header from client to upstream | false | PROXY_ENABLE_ACCEPT_ENCODING_HEADER
160
160
| \--enable-id-token-claims | extract claims also from ID token, you can then use --add-claims option to specify claims from ID token | false | PROXY_ENABLE_ID_TOKEN_CLAIMS
161
+
| \--enable-userinfo-claims | extract claims also from userinfo, you can then use --add-claims option to specify claims | false | PROXY_ENABLE_USER_INFO_CLAIMS
161
162
|\--enable-loa | enable level of authentication | false |
Copy file name to clipboardExpand all lines: pkg/keycloak/config/config.go
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -201,6 +201,7 @@ type Config struct {
201
201
EnableRequestUpstreamCompressionbool`env:"ENABLE_REQUEST_UPSTREAM_COMPRESSION" json:"enable-request-upstream-compression" usage:"enables asking upstream for compression, by adding Accept-Encoding: gzip header and decompressing response from upstream" yaml:"enable-request-upstream-compression"`
202
202
EnableAcceptEncodingHeaderbool`env:"ENABLE_ACCEPT_ENCODING_HEADER" json:"enable-accept-encoding-header" usage:"pass Accept-Encoding header from client to upstream" yaml:"enable-accept-encoding-header"`
203
203
EnableIDTokenClaimsbool`env:"ENABLE_ID_TOKEN_CLAIMS" json:"enable-id-token-claims" usage:"extract claims also from id token, you can then use --add-claims option to specify claims from id token" yaml:"enable-id-token-claims"`
204
+
EnableUserInfoClaimsbool`env:"ENABLE_USER_INFO_CLAIMS" json:"enable-user-info-claims" usage:"extract information from userinfo endpoint, you can then use --add-claims to specify claims" yaml:"enable-user-info-claims"`
0 commit comments