Reverse proxy authentication support (#1152)

* feat(auth): reverse proxy authentication support - #176

* address PR remarks

* Fix redaction of UI appConfig

Co-authored-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Igor Rzegocki 2021-06-12 03:17:21 +00:00 committed by GitHub
parent b445cdd641
commit 6bd4c0f6bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 216 additions and 3 deletions

View file

@ -50,6 +50,8 @@ type configOptions struct {
EnableLogRedacting bool
AuthRequestLimit int
AuthWindowLength time.Duration
ReverseProxyUserHeader string
ReverseProxyWhitelist string
Scanner scannerOptions
@ -201,6 +203,8 @@ func init() {
viper.SetDefault("authrequestlimit", 5)
viper.SetDefault("authwindowlength", 20*time.Second)
viper.SetDefault("reverseproxyuserheader", "Remote-User")
viper.SetDefault("scanner.extractor", "taglib")
viper.SetDefault("agents", "lastfm,spotify")
viper.SetDefault("lastfm.enabled", true)