Add option to load TLS cert/key, and use HTTPS

This commit is contained in:
Deluan 2023-03-17 16:07:01 -04:00
parent 7ea111322b
commit 673880d661
3 changed files with 50 additions and 13 deletions

View file

@ -32,6 +32,8 @@ type configOptions struct {
BasePath string
BaseHost string
BaseScheme string
TLSCert string
TLSKey string
UILoginBackgroundURL string
UIWelcomeMessage string
MaxSidebarPlaylists int
@ -246,6 +248,8 @@ func init() {
viper.SetDefault("scaninterval", -1)
viper.SetDefault("scanschedule", "@every 1m")
viper.SetDefault("baseurl", "")
viper.SetDefault("tlscert", "")
viper.SetDefault("tlskey", "")
viper.SetDefault("uiloginbackgroundurl", consts.DefaultUILoginBackgroundURL)
viper.SetDefault("uiwelcomemessage", "")
viper.SetDefault("maxsidebarplaylists", consts.DefaultMaxSidebarPlaylists)