Merge pull request 'fix: vérifier existence de certfile et keyfile pour API' (#59) from vlbeaudoin/fix/check-api-cert-and-key into main
Reviewed-on: #59
This commit is contained in:
commit
31bcdbac20
1 changed files with 7 additions and 2 deletions
9
cmd.go
9
cmd.go
|
@ -129,8 +129,13 @@ var apiCmd = &cobra.Command{
|
|||
),
|
||||
)
|
||||
case true:
|
||||
//TODO
|
||||
log.Printf("dbg: certfile='%s' keyfile='%s'", cfg.Server.API.TLS.Certfile, cfg.Server.API.TLS.Keyfile)
|
||||
if cfg.Server.API.TLS.Certfile == "" {
|
||||
log.Fatal("TLS enabled for API but no certificate file provided")
|
||||
}
|
||||
|
||||
if cfg.Server.API.TLS.Keyfile == "" {
|
||||
log.Fatal("TLS enabled for UI but no private key file provided")
|
||||
}
|
||||
|
||||
e.Logger.Fatal(
|
||||
e.StartTLS(
|
||||
|
|
Loading…
Reference in a new issue