You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
876 B
Go
36 lines
876 B
Go
package internal
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/tal-tech/go-zero/core/proc"
|
|
)
|
|
|
|
func StartHttp(host string, port int, handler http.Handler) error {
|
|
return start(host, port, handler, func(srv *http.Server) error {
|
|
return srv.ListenAndServe()
|
|
})
|
|
}
|
|
|
|
func StartHttps(host string, port int, certFile, keyFile string, handler http.Handler) error {
|
|
return start(host, port, handler, func(srv *http.Server) error {
|
|
// certFile and keyFile are set in buildHttpsServer
|
|
return srv.ListenAndServeTLS(certFile, keyFile)
|
|
})
|
|
}
|
|
|
|
func start(host string, port int, handler http.Handler, run func(srv *http.Server) error) error {
|
|
server := &http.Server{
|
|
Addr: fmt.Sprintf("%s:%d", host, port),
|
|
Handler: handler,
|
|
}
|
|
waitForCalled := proc.AddWrapUpListener(func() {
|
|
server.Shutdown(context.Background())
|
|
})
|
|
defer waitForCalled()
|
|
|
|
return run(server)
|
|
}
|