mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-30 10:56:28 +02:00
config: fix ignored yaml fields (#1698)
This commit is contained in:
parent
ad828c6e84
commit
4fbbf28a16
1 changed files with 2 additions and 2 deletions
|
@ -114,10 +114,10 @@ type Options struct {
|
|||
// AuthenticateURL represents the externally accessible http endpoints
|
||||
// used for authentication requests and callbacks
|
||||
AuthenticateURLString string `mapstructure:"authenticate_service_url" yaml:"authenticate_service_url,omitempty"`
|
||||
AuthenticateURL *url.URL `yaml:"-,omitempty"`
|
||||
AuthenticateURL *url.URL `yaml:"-"`
|
||||
// SignOutRedirectURL represents the url that user will be redirected to after signing out.
|
||||
SignOutRedirectURLString string `mapstructure:"signout_redirect_url" yaml:"signout_redirect_url,omitempty"`
|
||||
SignOutRedirectURL *url.URL `yaml:"-,omitempty"`
|
||||
SignOutRedirectURL *url.URL `yaml:"-"`
|
||||
|
||||
// AuthenticateCallbackPath is the path to the HTTP endpoint that will
|
||||
// receive the response from your identity provider. The value must exactly
|
||||
|
|
Loading…
Add table
Reference in a new issue