mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-09 23:27:43 +02:00
authenticate: remove authorize url validate check (#790)
* authenticate: remove authorize url validate check * fix test
This commit is contained in:
parent
f6114c288a
commit
12d90a021c
2 changed files with 0 additions and 7 deletions
|
@ -55,9 +55,6 @@ func ValidateOptions(o config.Options) error {
|
|||
if o.AuthenticateCallbackPath == "" {
|
||||
return errors.New("authenticate: 'AUTHENTICATE_CALLBACK_PATH' is required")
|
||||
}
|
||||
if err := urlutil.ValidateURL(o.AuthorizeURL); err != nil {
|
||||
return fmt.Errorf("authenticate: invalid 'AUTHORIZE_SERVICE_URL': %w", err)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue