Merge pull request 'fix: considérer cfg.Server.API.Host' (#60) from vlbeaudoin/fix/api-check-host into main
Reviewed-on: #60
This commit is contained in:
commit
61c4ef80f5
1 changed files with 2 additions and 2 deletions
4
cmd.go
4
cmd.go
|
@ -125,7 +125,7 @@ var apiCmd = &cobra.Command{
|
||||||
case false:
|
case false:
|
||||||
e.Logger.Fatal(
|
e.Logger.Fatal(
|
||||||
e.Start(
|
e.Start(
|
||||||
fmt.Sprintf(":%d", cfg.Server.API.Port),
|
fmt.Sprintf("%s:%d", cfg.Server.API.Host, cfg.Server.API.Port),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
case true:
|
case true:
|
||||||
|
@ -139,7 +139,7 @@ var apiCmd = &cobra.Command{
|
||||||
|
|
||||||
e.Logger.Fatal(
|
e.Logger.Fatal(
|
||||||
e.StartTLS(
|
e.StartTLS(
|
||||||
fmt.Sprintf(":%d", cfg.Server.API.Port),
|
fmt.Sprintf("%s:%d", cfg.Server.API.Host, cfg.Server.API.Port),
|
||||||
cfg.Server.API.TLS.Certfile,
|
cfg.Server.API.TLS.Certfile,
|
||||||
cfg.Server.API.TLS.Keyfile,
|
cfg.Server.API.TLS.Keyfile,
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue