Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

web.go 6.0KB

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