*: call ListenAndServeTLS when tls is enabled in config
This commit is contained in:
parent
291ed3d440
commit
0544586ade
|
@ -397,7 +397,11 @@ func (s *Configstore) run(ctx context.Context) error {
|
|||
|
||||
lerrCh := make(chan error, 1)
|
||||
util.GoWait(&wg, func() {
|
||||
if !s.c.Web.TLS {
|
||||
lerrCh <- httpServer.ListenAndServe()
|
||||
} else {
|
||||
lerrCh <- httpServer.ListenAndServeTLS("", "")
|
||||
}
|
||||
})
|
||||
defer httpServer.Close()
|
||||
|
||||
|
|
|
@ -1475,7 +1475,11 @@ func (e *Executor) Run(ctx context.Context) error {
|
|||
}
|
||||
lerrCh := make(chan error)
|
||||
go func() {
|
||||
if !e.c.Web.TLS {
|
||||
lerrCh <- httpServer.ListenAndServe()
|
||||
} else {
|
||||
lerrCh <- httpServer.ListenAndServeTLS("", "")
|
||||
}
|
||||
}()
|
||||
|
||||
select {
|
||||
|
|
|
@ -350,7 +350,11 @@ func (g *Gateway) Run(ctx context.Context) error {
|
|||
|
||||
lerrCh := make(chan error)
|
||||
go func() {
|
||||
if !g.c.Web.TLS {
|
||||
lerrCh <- httpServer.ListenAndServe()
|
||||
} else {
|
||||
lerrCh <- httpServer.ListenAndServeTLS("", "")
|
||||
}
|
||||
}()
|
||||
|
||||
select {
|
||||
|
|
|
@ -172,7 +172,11 @@ func (s *Gitserver) Run(ctx context.Context) error {
|
|||
|
||||
lerrCh := make(chan error)
|
||||
go func() {
|
||||
if !s.c.Web.TLS {
|
||||
lerrCh <- httpServer.ListenAndServe()
|
||||
} else {
|
||||
lerrCh <- httpServer.ListenAndServeTLS("", "")
|
||||
}
|
||||
}()
|
||||
|
||||
select {
|
||||
|
|
|
@ -403,7 +403,11 @@ func (s *Runservice) run(ctx context.Context) error {
|
|||
|
||||
lerrCh := make(chan error, 1)
|
||||
util.GoWait(&wg, func() {
|
||||
if !s.c.Web.TLS {
|
||||
lerrCh <- httpServer.ListenAndServe()
|
||||
} else {
|
||||
lerrCh <- httpServer.ListenAndServeTLS("", "")
|
||||
}
|
||||
})
|
||||
|
||||
select {
|
||||
|
|
Loading…
Reference in New Issue