You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

web.go 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package cmd
  5. import (
  6. "context"
  7. "fmt"
  8. "net/http"
  9. _ "net/http/pprof" // Used for debugging if enabled and a web server is running
  10. "os"
  11. "strings"
  12. "code.gitea.io/gitea/modules/graceful"
  13. "code.gitea.io/gitea/modules/log"
  14. "code.gitea.io/gitea/modules/setting"
  15. "code.gitea.io/gitea/routers"
  16. "code.gitea.io/gitea/routers/routes"
  17. context2 "github.com/gorilla/context"
  18. "github.com/unknwon/com"
  19. "github.com/urfave/cli"
  20. "golang.org/x/crypto/acme/autocert"
  21. ini "gopkg.in/ini.v1"
  22. )
  23. // CmdWeb represents the available web sub-command.
  24. var CmdWeb = cli.Command{
  25. Name: "web",
  26. Usage: "Start Gitea web server",
  27. Description: `Gitea web server is the only thing you need to run,
  28. and it takes care of all the other things for you`,
  29. Action: runWeb,
  30. Flags: []cli.Flag{
  31. cli.StringFlag{
  32. Name: "port, p",
  33. Value: "3000",
  34. Usage: "Temporary port number to prevent conflict",
  35. },
  36. cli.StringFlag{
  37. Name: "pid, P",
  38. Value: "/var/run/gitea.pid",
  39. Usage: "Custom pid file path",
  40. },
  41. },
  42. }
  43. func runHTTPRedirector() {
  44. source := fmt.Sprintf("%s:%s", setting.HTTPAddr, setting.PortToRedirect)
  45. dest := strings.TrimSuffix(setting.AppURL, "/")
  46. log.Info("Redirecting: %s to %s", source, dest)
  47. handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  48. target := dest + r.URL.Path
  49. if len(r.URL.RawQuery) > 0 {
  50. target += "?" + r.URL.RawQuery
  51. }
  52. http.Redirect(w, r, target, http.StatusTemporaryRedirect)
  53. })
  54. var err = runHTTP("tcp", source, context2.ClearHandler(handler))
  55. if err != nil {
  56. log.Fatal("Failed to start port redirection: %v", err)
  57. }
  58. }
  59. func runLetsEncrypt(listenAddr, domain, directory, email string, m http.Handler) error {
  60. certManager := autocert.Manager{
  61. Prompt: autocert.AcceptTOS,
  62. HostPolicy: autocert.HostWhitelist(domain),
  63. Cache: autocert.DirCache(directory),
  64. Email: email,
  65. }
  66. go func() {
  67. log.Info("Running Let's Encrypt handler on %s", setting.HTTPAddr+":"+setting.PortToRedirect)
  68. // all traffic coming into HTTP will be redirect to HTTPS automatically (LE HTTP-01 validation happens here)
  69. var err = runHTTP("tcp", setting.HTTPAddr+":"+setting.PortToRedirect, certManager.HTTPHandler(http.HandlerFunc(runLetsEncryptFallbackHandler)))
  70. if err != nil {
  71. log.Fatal("Failed to start the Let's Encrypt handler on port %s: %v", setting.PortToRedirect, err)
  72. }
  73. }()
  74. return runHTTPSWithTLSConfig("tcp", listenAddr, certManager.TLSConfig(), context2.ClearHandler(m))
  75. }
  76. func runLetsEncryptFallbackHandler(w http.ResponseWriter, r *http.Request) {
  77. if r.Method != "GET" && r.Method != "HEAD" {
  78. http.Error(w, "Use HTTPS", http.StatusBadRequest)
  79. return
  80. }
  81. // Remove the trailing slash at the end of setting.AppURL, the request
  82. // URI always contains a leading slash, which would result in a double
  83. // slash
  84. target := strings.TrimRight(setting.AppURL, "/") + r.URL.RequestURI()
  85. http.Redirect(w, r, target, http.StatusFound)
  86. }
  87. func runWeb(ctx *cli.Context) error {
  88. managerCtx, cancel := context.WithCancel(context.Background())
  89. graceful.InitManager(managerCtx)
  90. defer cancel()
  91. if os.Getppid() > 1 && len(os.Getenv("LISTEN_FDS")) > 0 {
  92. log.Info("Restarting Gitea on PID: %d from parent PID: %d", os.Getpid(), os.Getppid())
  93. } else {
  94. log.Info("Starting Gitea on PID: %d", os.Getpid())
  95. }
  96. // Set pid file setting
  97. if ctx.IsSet("pid") {
  98. setting.CustomPID = ctx.String("pid")
  99. }
  100. // Perform global initialization
  101. routers.GlobalInit(graceful.GetManager().HammerContext())
  102. // Set up Macaron
  103. m := routes.NewMacaron()
  104. routes.RegisterRoutes(m)
  105. // Flag for port number in case first time run conflict.
  106. if ctx.IsSet("port") {
  107. setting.AppURL = strings.Replace(setting.AppURL, setting.HTTPPort, ctx.String("port"), 1)
  108. setting.HTTPPort = ctx.String("port")
  109. switch setting.Protocol {
  110. case setting.UnixSocket:
  111. case setting.FCGI:
  112. case setting.FCGIUnix:
  113. default:
  114. // Save LOCAL_ROOT_URL if port changed
  115. cfg := ini.Empty()
  116. if com.IsFile(setting.CustomConf) {
  117. // Keeps custom settings if there is already something.
  118. if err := cfg.Append(setting.CustomConf); err != nil {
  119. return fmt.Errorf("Failed to load custom conf '%s': %v", setting.CustomConf, err)
  120. }
  121. }
  122. defaultLocalURL := string(setting.Protocol) + "://"
  123. if setting.HTTPAddr == "0.0.0.0" {
  124. defaultLocalURL += "localhost"
  125. } else {
  126. defaultLocalURL += setting.HTTPAddr
  127. }
  128. defaultLocalURL += ":" + setting.HTTPPort + "/"
  129. cfg.Section("server").Key("LOCAL_ROOT_URL").SetValue(defaultLocalURL)
  130. if err := cfg.SaveTo(setting.CustomConf); err != nil {
  131. return fmt.Errorf("Error saving generated JWT Secret to custom config: %v", err)
  132. }
  133. }
  134. }
  135. listenAddr := setting.HTTPAddr
  136. if setting.Protocol != setting.UnixSocket && setting.Protocol != setting.FCGIUnix {
  137. listenAddr += ":" + setting.HTTPPort
  138. }
  139. log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubURL)
  140. if setting.LFS.StartServer {
  141. log.Info("LFS server enabled")
  142. }
  143. if setting.EnablePprof {
  144. go func() {
  145. log.Info("Starting pprof server on localhost:6060")
  146. log.Info("%v", http.ListenAndServe("localhost:6060", nil))
  147. }()
  148. }
  149. var err error
  150. switch setting.Protocol {
  151. case setting.HTTP:
  152. NoHTTPRedirector()
  153. err = runHTTP("tcp", listenAddr, context2.ClearHandler(m))
  154. case setting.HTTPS:
  155. if setting.EnableLetsEncrypt {
  156. err = runLetsEncrypt(listenAddr, setting.Domain, setting.LetsEncryptDirectory, setting.LetsEncryptEmail, context2.ClearHandler(m))
  157. break
  158. }
  159. if setting.RedirectOtherPort {
  160. go runHTTPRedirector()
  161. } else {
  162. NoHTTPRedirector()
  163. }
  164. err = runHTTPS("tcp", listenAddr, setting.CertFile, setting.KeyFile, context2.ClearHandler(m))
  165. case setting.FCGI:
  166. NoHTTPRedirector()
  167. err = runFCGI("tcp", listenAddr, context2.ClearHandler(m))
  168. case setting.UnixSocket:
  169. NoHTTPRedirector()
  170. err = runHTTP("unix", listenAddr, context2.ClearHandler(m))
  171. case setting.FCGIUnix:
  172. NoHTTPRedirector()
  173. err = runFCGI("unix", listenAddr, context2.ClearHandler(m))
  174. default:
  175. log.Fatal("Invalid protocol: %s", setting.Protocol)
  176. }
  177. if err != nil {
  178. log.Critical("Failed to start server: %v", err)
  179. }
  180. log.Info("HTTP Listener: %s Closed", listenAddr)
  181. <-graceful.GetManager().Done()
  182. log.Info("PID: %d Gitea Web Finished", os.Getpid())
  183. log.Close()
  184. return nil
  185. }