providers/proxy: add option to override host header with property mappings (cherry-pick #14927) (#14945)

Co-authored-by: Jens L. <jens@goauthentik.io>
This commit is contained in:
gcp-cherry-pick-bot[bot]
2025-06-06 15:27:10 +02:00
committed by GitHub
parent 150705f221
commit dd08e1bf66
3 changed files with 27 additions and 7 deletions

View File

@ -3,6 +3,7 @@ package application
type ProxyClaims struct {
UserAttributes map[string]interface{} `json:"user_attributes"`
BackendOverride string `json:"backend_override"`
HostHeader string `json:"host_header"`
IsSuperuser bool `json:"is_superuser"`
}