2016-12-31 14:46:02 +05:30
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2016-12-31 14:46:02 +05:30
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2019-11-24 16:09:50 +05:30
|
|
|
"net"
|
2016-12-31 14:46:02 +05:30
|
|
|
"net/http"
|
2019-11-24 16:09:50 +05:30
|
|
|
"net/http/fcgi"
|
2021-04-09 18:47:57 +05:30
|
|
|
"strings"
|
2016-12-31 14:46:02 +05:30
|
|
|
|
2019-10-15 19:09:51 +05:30
|
|
|
"code.gitea.io/gitea/modules/graceful"
|
2019-11-24 16:09:50 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-04-09 18:47:57 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2016-12-31 14:46:02 +05:30
|
|
|
)
|
|
|
|
|
2022-08-21 23:50:43 +05:30
|
|
|
func runHTTP(network, listenAddr, name string, m http.Handler, useProxyProtocol bool) error {
|
|
|
|
return graceful.HTTPListenAndServe(network, listenAddr, name, m, useProxyProtocol)
|
2016-12-31 14:46:02 +05:30
|
|
|
}
|
|
|
|
|
2019-10-15 19:09:51 +05:30
|
|
|
// NoHTTPRedirector tells our cleanup routine that we will not be using a fallback http redirector
|
|
|
|
func NoHTTPRedirector() {
|
2019-12-15 15:21:28 +05:30
|
|
|
graceful.GetManager().InformCleanup()
|
2019-10-15 19:09:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// NoMainListener tells our cleanup routine that we will not be using a possibly provided listener
|
|
|
|
// for our main HTTP/HTTPS service
|
|
|
|
func NoMainListener() {
|
2019-12-15 15:21:28 +05:30
|
|
|
graceful.GetManager().InformCleanup()
|
2016-12-31 14:46:02 +05:30
|
|
|
}
|
2019-11-24 16:09:50 +05:30
|
|
|
|
2020-10-20 02:33:08 +05:30
|
|
|
// NoInstallListener tells our cleanup routine that we will not be using a possibly provided listener
|
|
|
|
// for our install HTTP/HTTPS service
|
|
|
|
func NoInstallListener() {
|
|
|
|
graceful.GetManager().InformCleanup()
|
|
|
|
}
|
|
|
|
|
2022-08-21 23:50:43 +05:30
|
|
|
func runFCGI(network, listenAddr, name string, m http.Handler, useProxyProtocol bool) error {
|
2019-11-24 16:09:50 +05:30
|
|
|
// This needs to handle stdin as fcgi point
|
2021-03-08 08:13:59 +05:30
|
|
|
fcgiServer := graceful.NewServer(network, listenAddr, name)
|
2019-11-24 16:09:50 +05:30
|
|
|
|
|
|
|
err := fcgiServer.ListenAndServe(func(listener net.Listener) error {
|
2021-04-09 18:47:57 +05:30
|
|
|
return fcgi.Serve(listener, http.HandlerFunc(func(resp http.ResponseWriter, req *http.Request) {
|
|
|
|
if setting.AppSubURL != "" {
|
|
|
|
req.URL.Path = strings.TrimPrefix(req.URL.Path, setting.AppSubURL)
|
|
|
|
}
|
|
|
|
m.ServeHTTP(resp, req)
|
|
|
|
}))
|
2022-08-21 23:50:43 +05:30
|
|
|
}, useProxyProtocol)
|
2019-11-24 16:09:50 +05:30
|
|
|
if err != nil {
|
|
|
|
log.Fatal("Failed to start FCGI main server: %v", err)
|
|
|
|
}
|
|
|
|
log.Info("FCGI Listener: %s Closed", listenAddr)
|
|
|
|
return err
|
|
|
|
}
|