2016-12-31 10:16:02 +01:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
"net/http"
|
|
|
|
|
2019-10-15 15:39:51 +02:00
|
|
|
"code.gitea.io/gitea/modules/graceful"
|
2016-12-31 10:16:02 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func runHTTP(listenAddr string, m http.Handler) error {
|
2019-10-15 15:39:51 +02:00
|
|
|
return graceful.HTTPListenAndServe("tcp", listenAddr, m)
|
2016-12-31 10:16:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func runHTTPS(listenAddr, certFile, keyFile string, m http.Handler) error {
|
2019-10-15 15:39:51 +02:00
|
|
|
return graceful.HTTPListenAndServeTLS("tcp", listenAddr, certFile, keyFile, m)
|
|
|
|
}
|
|
|
|
|
|
|
|
func runHTTPSWithTLSConfig(listenAddr string, tlsConfig *tls.Config, m http.Handler) error {
|
|
|
|
return graceful.HTTPListenAndServeTLSConfig("tcp", listenAddr, tlsConfig, m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NoHTTPRedirector tells our cleanup routine that we will not be using a fallback http redirector
|
|
|
|
func NoHTTPRedirector() {
|
2019-11-21 19:32:02 +01:00
|
|
|
graceful.Manager.InformCleanup()
|
2019-10-15 15:39:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// NoMainListener tells our cleanup routine that we will not be using a possibly provided listener
|
|
|
|
// for our main HTTP/HTTPS service
|
|
|
|
func NoMainListener() {
|
2019-11-21 19:32:02 +01:00
|
|
|
graceful.Manager.InformCleanup()
|
2016-12-31 10:16:02 +01:00
|
|
|
}
|