diff --git a/oauthproxy.go b/oauthproxy.go index 1f70198..7951a2a 100644 --- a/oauthproxy.go +++ b/oauthproxy.go @@ -10,9 +10,9 @@ import ( "net/http" "net/http/httputil" "net/url" + "regexp" "strings" "time" - "regexp" "github.com/bitly/go-simplejson" ) @@ -86,7 +86,7 @@ func NewOauthProxy(opts *Options, validator func(string) bool) *OauthProxy { serveMux: serveMux, redirectUrl: redirectUrl, skipAuthRegex: opts.SkipAuthRegex, - compiledRegex: opts.CompiledRegex, + compiledRegex: opts.CompiledRegex, PassBasicAuth: opts.PassBasicAuth, } } diff --git a/options.go b/options.go index 49a1515..0ddcef2 100644 --- a/options.go +++ b/options.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" "net/url" - "time" "regexp" + "time" ) // Configuration Options that can be set by Command Line Flag, or Config File @@ -28,8 +28,8 @@ type Options struct { SkipAuthRegex []string `flag:"skip-auth-regex" cfg:"skip_auth_regex"` // internal values that are set after config validation - redirectUrl *url.URL - proxyUrls []*url.URL + redirectUrl *url.URL + proxyUrls []*url.URL CompiledRegex []*regexp.Regexp }