mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-05-13 22:06:40 +02:00
Create LegacyHeaders struct and conversion to new Headers
This commit is contained in:
parent
ab3cd58df6
commit
2dc0d1e7ee
@ -1,6 +1,7 @@
|
|||||||
package options
|
package options
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/base64"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/url"
|
"net/url"
|
||||||
"strconv"
|
"strconv"
|
||||||
@ -15,6 +16,9 @@ type LegacyOptions struct {
|
|||||||
// Legacy options related to upstream servers
|
// Legacy options related to upstream servers
|
||||||
LegacyUpstreams LegacyUpstreams `cfg:",squash"`
|
LegacyUpstreams LegacyUpstreams `cfg:",squash"`
|
||||||
|
|
||||||
|
// Legacy options for injecting request/response headers
|
||||||
|
LegacyHeaders LegacyHeaders `cfg:",squash"`
|
||||||
|
|
||||||
Options Options `cfg:",squash"`
|
Options Options `cfg:",squash"`
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -26,6 +30,11 @@ func NewLegacyOptions() *LegacyOptions {
|
|||||||
FlushInterval: time.Duration(1) * time.Second,
|
FlushInterval: time.Duration(1) * time.Second,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
LegacyHeaders: LegacyHeaders{
|
||||||
|
PassBasicAuth: true,
|
||||||
|
PassUserHeaders: true,
|
||||||
|
},
|
||||||
|
|
||||||
Options: *NewOptions(),
|
Options: *NewOptions(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -37,6 +46,7 @@ func (l *LegacyOptions) ToOptions() (*Options, error) {
|
|||||||
}
|
}
|
||||||
l.Options.UpstreamServers = upstreams
|
l.Options.UpstreamServers = upstreams
|
||||||
|
|
||||||
|
l.Options.InjectRequestHeaders, l.Options.InjectResponseHeaders = l.LegacyHeaders.convert()
|
||||||
return &l.Options, nil
|
return &l.Options, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -119,3 +129,254 @@ func (l *LegacyUpstreams) convert() (Upstreams, error) {
|
|||||||
|
|
||||||
return upstreams, nil
|
return upstreams, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type LegacyHeaders struct {
|
||||||
|
PassBasicAuth bool `flag:"pass-basic-auth" cfg:"pass_basic_auth"`
|
||||||
|
PassAccessToken bool `flag:"pass-access-token" cfg:"pass_access_token"`
|
||||||
|
PassUserHeaders bool `flag:"pass-user-headers" cfg:"pass_user_headers"`
|
||||||
|
PassAuthorization bool `flag:"pass-authorization-header" cfg:"pass_authorization_header"`
|
||||||
|
|
||||||
|
SetBasicAuth bool `flag:"set-basic-auth" cfg:"set_basic_auth"`
|
||||||
|
SetXAuthRequest bool `flag:"set-xauthrequest" cfg:"set_xauthrequest"`
|
||||||
|
SetAuthorization bool `flag:"set-authorization-header" cfg:"set_authorization_header"`
|
||||||
|
|
||||||
|
PreferEmailToUser bool `flag:"prefer-email-to-user" cfg:"prefer_email_to_user"`
|
||||||
|
BasicAuthPassword string `flag:"basic-auth-password" cfg:"basic_auth_password"`
|
||||||
|
SkipAuthStripHeaders bool `flag:"skip-auth-strip-headers" cfg:"skip_auth_strip_headers"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func legacyHeadersFlagSet() *pflag.FlagSet {
|
||||||
|
flagSet := pflag.NewFlagSet("headers", pflag.ExitOnError)
|
||||||
|
|
||||||
|
flagSet.Bool("pass-basic-auth", true, "pass HTTP Basic Auth, X-Forwarded-User and X-Forwarded-Email information to upstream")
|
||||||
|
flagSet.Bool("pass-access-token", false, "pass OAuth access_token to upstream via X-Forwarded-Access-Token header")
|
||||||
|
flagSet.Bool("pass-user-headers", true, "pass X-Forwarded-User and X-Forwarded-Email information to upstream")
|
||||||
|
flagSet.Bool("pass-authorization-header", false, "pass the Authorization Header to upstream")
|
||||||
|
|
||||||
|
flagSet.Bool("set-basic-auth", false, "set HTTP Basic Auth information in response (useful in Nginx auth_request mode)")
|
||||||
|
flagSet.Bool("set-xauthrequest", false, "set X-Auth-Request-User and X-Auth-Request-Email response headers (useful in Nginx auth_request mode)")
|
||||||
|
flagSet.Bool("set-authorization-header", false, "set Authorization response headers (useful in Nginx auth_request mode)")
|
||||||
|
|
||||||
|
flagSet.Bool("prefer-email-to-user", false, "Prefer to use the Email address as the Username when passing information to upstream. Will only use Username if Email is unavailable, eg. htaccess authentication. Used in conjunction with -pass-basic-auth and -pass-user-headers")
|
||||||
|
flagSet.String("basic-auth-password", "", "the password to set when passing the HTTP Basic Auth header")
|
||||||
|
flagSet.Bool("skip-auth-strip-headers", false, "strips X-Forwarded-* style authentication headers & Authorization header if they would be set by oauth2-proxy for request paths in --skip-auth-regex")
|
||||||
|
|
||||||
|
return flagSet
|
||||||
|
}
|
||||||
|
|
||||||
|
// convert takes the legacy request/response headers and converts them to
|
||||||
|
// the new format for InjectRequestHeaders and InjectResponseHeaders
|
||||||
|
func (l *LegacyHeaders) convert() ([]Header, []Header) {
|
||||||
|
return l.getRequestHeaders(), l.getResponseHeaders()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *LegacyHeaders) getRequestHeaders() []Header {
|
||||||
|
requestHeaders := []Header{}
|
||||||
|
|
||||||
|
if l.PassBasicAuth && l.BasicAuthPassword != "" {
|
||||||
|
requestHeaders = append(requestHeaders, getBasicAuthHeader(l.PreferEmailToUser, l.BasicAuthPassword))
|
||||||
|
}
|
||||||
|
|
||||||
|
// In the old implementation, PassUserHeaders is a subset of PassBasicAuth
|
||||||
|
if l.PassBasicAuth || l.PassUserHeaders {
|
||||||
|
requestHeaders = append(requestHeaders, getPassUserHeaders(l.PreferEmailToUser)...)
|
||||||
|
requestHeaders = append(requestHeaders, getPreferredUsernameHeader())
|
||||||
|
}
|
||||||
|
|
||||||
|
if l.PassAccessToken {
|
||||||
|
requestHeaders = append(requestHeaders, getPassAccessTokenHeader())
|
||||||
|
}
|
||||||
|
|
||||||
|
if l.PassAuthorization {
|
||||||
|
requestHeaders = append(requestHeaders, getAuthorizationHeader())
|
||||||
|
}
|
||||||
|
|
||||||
|
for i := range requestHeaders {
|
||||||
|
requestHeaders[i].PreserveRequestValue = !l.SkipAuthStripHeaders
|
||||||
|
}
|
||||||
|
|
||||||
|
return requestHeaders
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *LegacyHeaders) getResponseHeaders() []Header {
|
||||||
|
responseHeaders := []Header{}
|
||||||
|
|
||||||
|
if l.SetXAuthRequest {
|
||||||
|
responseHeaders = append(responseHeaders, getXAuthRequestHeaders(l.PassAccessToken)...)
|
||||||
|
}
|
||||||
|
|
||||||
|
if l.SetBasicAuth {
|
||||||
|
responseHeaders = append(responseHeaders, getBasicAuthHeader(l.PreferEmailToUser, l.BasicAuthPassword))
|
||||||
|
}
|
||||||
|
|
||||||
|
if l.SetAuthorization {
|
||||||
|
responseHeaders = append(responseHeaders, getAuthorizationHeader())
|
||||||
|
}
|
||||||
|
|
||||||
|
return responseHeaders
|
||||||
|
}
|
||||||
|
|
||||||
|
func getBasicAuthHeader(preferEmailToUser bool, basicAuthPassword string) Header {
|
||||||
|
claim := "user"
|
||||||
|
if preferEmailToUser {
|
||||||
|
claim = "email"
|
||||||
|
}
|
||||||
|
|
||||||
|
return Header{
|
||||||
|
Name: "Authorization",
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: claim,
|
||||||
|
BasicAuthPassword: &SecretSource{
|
||||||
|
Value: []byte(base64.StdEncoding.EncodeToString([]byte(basicAuthPassword))),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func getPassUserHeaders(preferEmailToUser bool) []Header {
|
||||||
|
headers := []Header{
|
||||||
|
{
|
||||||
|
Name: "X-Forwarded-Groups",
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "groups",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
if preferEmailToUser {
|
||||||
|
return append(headers,
|
||||||
|
Header{
|
||||||
|
Name: "X-Forwarded-User",
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "email",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return append(headers,
|
||||||
|
Header{
|
||||||
|
Name: "X-Forwarded-User",
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "user",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Header{
|
||||||
|
Name: "X-Forwarded-Email",
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "email",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
func getPassAccessTokenHeader() Header {
|
||||||
|
return Header{
|
||||||
|
Name: "X-Forwarded-Access-Token",
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "access_token",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func getAuthorizationHeader() Header {
|
||||||
|
return Header{
|
||||||
|
Name: "Authorization",
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "id_token",
|
||||||
|
Prefix: "Bearer ",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func getPreferredUsernameHeader() Header {
|
||||||
|
return Header{
|
||||||
|
Name: "X-Forwarded-Preferred-Username",
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "preferred_username",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func getXAuthRequestHeaders(passAccessToken bool) []Header {
|
||||||
|
headers := []Header{
|
||||||
|
{
|
||||||
|
Name: "X-Auth-Request-User",
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "user",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "X-Auth-Request-Email",
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "email",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
getPreferredUsernameHeader(),
|
||||||
|
{
|
||||||
|
Name: "X-Auth-Request-Groups",
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "groups",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
if passAccessToken {
|
||||||
|
headers = append(headers, Header{
|
||||||
|
Name: "X-Auth-Request-Access-Token",
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "access_token",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
return headers
|
||||||
|
}
|
||||||
|
@ -57,6 +57,55 @@ var _ = Describe("Legacy Options", func() {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
opts.InjectRequestHeaders = []Header{
|
||||||
|
{
|
||||||
|
Name: "X-Forwarded-Groups",
|
||||||
|
PreserveRequestValue: true,
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "groups",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "X-Forwarded-User",
|
||||||
|
PreserveRequestValue: true,
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "user",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "X-Forwarded-Email",
|
||||||
|
PreserveRequestValue: true,
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "email",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Name: "X-Forwarded-Preferred-Username",
|
||||||
|
PreserveRequestValue: true,
|
||||||
|
Values: []HeaderValue{
|
||||||
|
{
|
||||||
|
ClaimSource: &ClaimSource{
|
||||||
|
Claim: "preferred_username",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
opts.InjectResponseHeaders = []Header{}
|
||||||
|
|
||||||
converted, err := legacyOpts.ToOptions()
|
converted, err := legacyOpts.ToOptions()
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(converted).To(Equal(opts))
|
Expect(converted).To(Equal(opts))
|
||||||
|
@ -65,22 +65,15 @@ type Options struct {
|
|||||||
// TODO(JoelSpeed): Rename when legacy config is removed
|
// TODO(JoelSpeed): Rename when legacy config is removed
|
||||||
UpstreamServers Upstreams `cfg:",internal"`
|
UpstreamServers Upstreams `cfg:",internal"`
|
||||||
|
|
||||||
|
InjectRequestHeaders []Header `cfg:",internal"`
|
||||||
|
InjectResponseHeaders []Header `cfg:",internal"`
|
||||||
|
|
||||||
SkipAuthRegex []string `flag:"skip-auth-regex" cfg:"skip_auth_regex"`
|
SkipAuthRegex []string `flag:"skip-auth-regex" cfg:"skip_auth_regex"`
|
||||||
SkipAuthRoutes []string `flag:"skip-auth-route" cfg:"skip_auth_routes"`
|
SkipAuthRoutes []string `flag:"skip-auth-route" cfg:"skip_auth_routes"`
|
||||||
SkipAuthStripHeaders bool `flag:"skip-auth-strip-headers" cfg:"skip_auth_strip_headers"`
|
|
||||||
SkipJwtBearerTokens bool `flag:"skip-jwt-bearer-tokens" cfg:"skip_jwt_bearer_tokens"`
|
SkipJwtBearerTokens bool `flag:"skip-jwt-bearer-tokens" cfg:"skip_jwt_bearer_tokens"`
|
||||||
ExtraJwtIssuers []string `flag:"extra-jwt-issuers" cfg:"extra_jwt_issuers"`
|
ExtraJwtIssuers []string `flag:"extra-jwt-issuers" cfg:"extra_jwt_issuers"`
|
||||||
PassBasicAuth bool `flag:"pass-basic-auth" cfg:"pass_basic_auth"`
|
|
||||||
SetBasicAuth bool `flag:"set-basic-auth" cfg:"set_basic_auth"`
|
|
||||||
PreferEmailToUser bool `flag:"prefer-email-to-user" cfg:"prefer_email_to_user"`
|
|
||||||
BasicAuthPassword string `flag:"basic-auth-password" cfg:"basic_auth_password"`
|
|
||||||
PassAccessToken bool `flag:"pass-access-token" cfg:"pass_access_token"`
|
|
||||||
SkipProviderButton bool `flag:"skip-provider-button" cfg:"skip_provider_button"`
|
SkipProviderButton bool `flag:"skip-provider-button" cfg:"skip_provider_button"`
|
||||||
PassUserHeaders bool `flag:"pass-user-headers" cfg:"pass_user_headers"`
|
|
||||||
SSLInsecureSkipVerify bool `flag:"ssl-insecure-skip-verify" cfg:"ssl_insecure_skip_verify"`
|
SSLInsecureSkipVerify bool `flag:"ssl-insecure-skip-verify" cfg:"ssl_insecure_skip_verify"`
|
||||||
SetXAuthRequest bool `flag:"set-xauthrequest" cfg:"set_xauthrequest"`
|
|
||||||
SetAuthorization bool `flag:"set-authorization-header" cfg:"set_authorization_header"`
|
|
||||||
PassAuthorization bool `flag:"pass-authorization-header" cfg:"pass_authorization_header"`
|
|
||||||
SkipAuthPreflight bool `flag:"skip-auth-preflight" cfg:"skip_auth_preflight"`
|
SkipAuthPreflight bool `flag:"skip-auth-preflight" cfg:"skip_auth_preflight"`
|
||||||
|
|
||||||
// These options allow for other providers besides Google, with
|
// These options allow for other providers besides Google, with
|
||||||
@ -151,15 +144,7 @@ func NewOptions() *Options {
|
|||||||
Cookie: cookieDefaults(),
|
Cookie: cookieDefaults(),
|
||||||
Session: sessionOptionsDefaults(),
|
Session: sessionOptionsDefaults(),
|
||||||
AzureTenant: "common",
|
AzureTenant: "common",
|
||||||
SetXAuthRequest: false,
|
|
||||||
SkipAuthPreflight: false,
|
SkipAuthPreflight: false,
|
||||||
PassBasicAuth: true,
|
|
||||||
SetBasicAuth: false,
|
|
||||||
PassUserHeaders: true,
|
|
||||||
PassAccessToken: false,
|
|
||||||
SetAuthorization: false,
|
|
||||||
PassAuthorization: false,
|
|
||||||
PreferEmailToUser: false,
|
|
||||||
Prompt: "", // Change to "login" when ApprovalPrompt officially deprecated
|
Prompt: "", // Change to "login" when ApprovalPrompt officially deprecated
|
||||||
ApprovalPrompt: "force",
|
ApprovalPrompt: "force",
|
||||||
UserIDClaim: "email",
|
UserIDClaim: "email",
|
||||||
@ -183,18 +168,8 @@ func NewFlagSet() *pflag.FlagSet {
|
|||||||
flagSet.String("tls-cert-file", "", "path to certificate file")
|
flagSet.String("tls-cert-file", "", "path to certificate file")
|
||||||
flagSet.String("tls-key-file", "", "path to private key file")
|
flagSet.String("tls-key-file", "", "path to private key file")
|
||||||
flagSet.String("redirect-url", "", "the OAuth Redirect URL. ie: \"https://internalapp.yourcompany.com/oauth2/callback\"")
|
flagSet.String("redirect-url", "", "the OAuth Redirect URL. ie: \"https://internalapp.yourcompany.com/oauth2/callback\"")
|
||||||
flagSet.Bool("set-xauthrequest", false, "set X-Auth-Request-User and X-Auth-Request-Email response headers (useful in Nginx auth_request mode)")
|
|
||||||
flagSet.Bool("pass-basic-auth", true, "pass HTTP Basic Auth, X-Forwarded-User and X-Forwarded-Email information to upstream")
|
|
||||||
flagSet.Bool("set-basic-auth", false, "set HTTP Basic Auth information in response (useful in Nginx auth_request mode)")
|
|
||||||
flagSet.Bool("prefer-email-to-user", false, "Prefer to use the Email address as the Username when passing information to upstream. Will only use Username if Email is unavailable, eg. htaccess authentication. Used in conjunction with -pass-basic-auth and -pass-user-headers")
|
|
||||||
flagSet.Bool("pass-user-headers", true, "pass X-Forwarded-User and X-Forwarded-Email information to upstream")
|
|
||||||
flagSet.String("basic-auth-password", "", "the password to set when passing the HTTP Basic Auth header")
|
|
||||||
flagSet.Bool("pass-access-token", false, "pass OAuth access_token to upstream via X-Forwarded-Access-Token header")
|
|
||||||
flagSet.Bool("pass-authorization-header", false, "pass the Authorization Header to upstream")
|
|
||||||
flagSet.Bool("set-authorization-header", false, "set Authorization response headers (useful in Nginx auth_request mode)")
|
|
||||||
flagSet.StringSlice("skip-auth-regex", []string{}, "(DEPRECATED for --skip-auth-route) bypass authentication for requests path's that match (may be given multiple times)")
|
flagSet.StringSlice("skip-auth-regex", []string{}, "(DEPRECATED for --skip-auth-route) bypass authentication for requests path's that match (may be given multiple times)")
|
||||||
flagSet.StringSlice("skip-auth-route", []string{}, "bypass authentication for requests that match the method & path. Format: method=path_regex OR path_regex alone for all methods")
|
flagSet.StringSlice("skip-auth-route", []string{}, "bypass authentication for requests that match the method & path. Format: method=path_regex OR path_regex alone for all methods")
|
||||||
flagSet.Bool("skip-auth-strip-headers", false, "strips `X-Forwarded-*` style authentication headers & `Authorization` header if they would be set by oauth2-proxy for allowlisted requests (`--skip-auth-route`, `--skip-auth-regex`, `--skip-auth-preflight`, `--trusted-ip`)")
|
|
||||||
flagSet.Bool("skip-provider-button", false, "will skip sign-in-page to directly reach the next step: oauth/start")
|
flagSet.Bool("skip-provider-button", false, "will skip sign-in-page to directly reach the next step: oauth/start")
|
||||||
flagSet.Bool("skip-auth-preflight", false, "will skip authentication for OPTIONS requests")
|
flagSet.Bool("skip-auth-preflight", false, "will skip authentication for OPTIONS requests")
|
||||||
flagSet.Bool("ssl-insecure-skip-verify", false, "skip validation of certificates presented when using HTTPS providers")
|
flagSet.Bool("ssl-insecure-skip-verify", false, "skip validation of certificates presented when using HTTPS providers")
|
||||||
@ -272,6 +247,7 @@ func NewFlagSet() *pflag.FlagSet {
|
|||||||
flagSet.AddFlagSet(cookieFlagSet())
|
flagSet.AddFlagSet(cookieFlagSet())
|
||||||
flagSet.AddFlagSet(loggingFlagSet())
|
flagSet.AddFlagSet(loggingFlagSet())
|
||||||
flagSet.AddFlagSet(legacyUpstreamsFlagSet())
|
flagSet.AddFlagSet(legacyUpstreamsFlagSet())
|
||||||
|
flagSet.AddFlagSet(legacyHeadersFlagSet())
|
||||||
|
|
||||||
return flagSet
|
return flagSet
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user