gitextract_1bjvy9ul/ ├── .gitignore ├── .travis.yml ├── Gopkg.toml ├── LICENSE ├── README.md ├── api/ │ ├── api.go │ └── api_test.go ├── contrib/ │ ├── oauth2_proxy.cfg.example │ └── oauth2_proxy.service.example ├── cookie/ │ ├── cookies.go │ ├── cookies_test.go │ └── nonce.go ├── dist.sh ├── env_options.go ├── env_options_test.go ├── htpasswd.go ├── htpasswd_test.go ├── http.go ├── logging_handler.go ├── logging_handler_test.go ├── main.go ├── oauthproxy.go ├── oauthproxy_test.go ├── options.go ├── options_test.go ├── providers/ │ ├── azure.go │ ├── azure_test.go │ ├── facebook.go │ ├── github.go │ ├── github_test.go │ ├── gitlab.go │ ├── gitlab_test.go │ ├── google.go │ ├── google_test.go │ ├── internal_util.go │ ├── internal_util_test.go │ ├── linkedin.go │ ├── linkedin_test.go │ ├── oidc.go │ ├── provider_data.go │ ├── provider_default.go │ ├── provider_default_test.go │ ├── providers.go │ ├── session_state.go │ └── session_state_test.go ├── string_array.go ├── templates.go ├── templates_test.go ├── test.sh ├── validator.go ├── validator_test.go ├── validator_watcher_copy_test.go ├── validator_watcher_test.go ├── version.go ├── watcher.go └── watcher_unsupported.go