feature: ajouter cfg.Server.UI.Host et implémenter UI TLS #61
2 changed files with 36 additions and 2 deletions
22
cmd.go
22
cmd.go
|
@ -251,7 +251,27 @@ Programme: [%s] %s
|
||||||
})
|
})
|
||||||
|
|
||||||
// Execution
|
// Execution
|
||||||
|
switch cfg.Server.UI.TLS.Enabled {
|
||||||
|
case false:
|
||||||
e.Logger.Fatal(e.Start(
|
e.Logger.Fatal(e.Start(
|
||||||
fmt.Sprintf(":%d", cfg.Server.UI.Port)))
|
fmt.Sprintf("%s:%d", cfg.Server.UI.Host, cfg.Server.UI.Port)))
|
||||||
|
case true:
|
||||||
|
if cfg.Server.UI.TLS.Certfile == "" {
|
||||||
|
log.Fatal("TLS enabled for UI but no certificate file provided")
|
||||||
|
}
|
||||||
|
|
||||||
|
if cfg.Server.UI.TLS.Keyfile == "" {
|
||||||
|
log.Fatal("TLS enabled for UI but no private key file provided")
|
||||||
|
}
|
||||||
|
|
||||||
|
e.Logger.Fatal(
|
||||||
|
e.StartTLS(
|
||||||
|
fmt.Sprintf("%s:%d", cfg.Server.UI.Host, cfg.Server.UI.Port),
|
||||||
|
cfg.Server.UI.TLS.Certfile,
|
||||||
|
cfg.Server.UI.TLS.Keyfile,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
14
config.go
14
config.go
|
@ -46,6 +46,7 @@ type Config struct {
|
||||||
Port int `yaml:"port"`
|
Port int `yaml:"port"`
|
||||||
Protocol string `yaml:"protocol"`
|
Protocol string `yaml:"protocol"`
|
||||||
} `yaml:"api"`
|
} `yaml:"api"`
|
||||||
|
Host string `yaml:"host"`
|
||||||
Password string `yaml:"password"`
|
Password string `yaml:"password"`
|
||||||
Port int `yaml:"port"`
|
Port int `yaml:"port"`
|
||||||
TLS struct {
|
TLS struct {
|
||||||
|
@ -366,6 +367,19 @@ func init() {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// server.ui.host
|
||||||
|
uiCmd.PersistentFlags().String(
|
||||||
|
"server-ui-host",
|
||||||
|
"",
|
||||||
|
"Web UI host",
|
||||||
|
)
|
||||||
|
if err := viper.BindPFlag(
|
||||||
|
"server.ui.host",
|
||||||
|
uiCmd.PersistentFlags().Lookup("server-ui-host"),
|
||||||
|
); err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
// server.ui.password
|
// server.ui.password
|
||||||
uiCmd.PersistentFlags().String(
|
uiCmd.PersistentFlags().String(
|
||||||
"server-ui-password",
|
"server-ui-password",
|
||||||
|
|
Loading…
Reference in a new issue