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.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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. "crypto/tls"
  7. "fmt"
  8. "net"
  9. "net/http"
  10. "net/http/fcgi"
  11. _ "net/http/pprof" // Used for debugging if enabled and a web server is running
  12. "os"
  13. "strings"
  14. "code.gitea.io/gitea/modules/log"
  15. "code.gitea.io/gitea/modules/setting"
  16. "code.gitea.io/gitea/routers"
  17. "code.gitea.io/gitea/routers/routes"
  18. "github.com/Unknwon/com"
  19. context2 "github.com/gorilla/context"
  20. "github.com/urfave/cli"
  21. "golang.org/x/crypto/acme/autocert"
  22. ini "gopkg.in/ini.v1"
  23. )
  24. // CmdWeb represents the available web sub-command.
  25. var CmdWeb = cli.Command{
  26. Name: "web",
  27. Usage: "Start Gitea web server",
  28. Description: `Gitea web server is the only thing you need to run,
  29. and it takes care of all the other things for you`,
  30. Action: runWeb,
  31. Flags: []cli.Flag{
  32. cli.StringFlag{
  33. Name: "port, p",
  34. Value: "3000",
  35. Usage: "Temporary port number to prevent conflict",
  36. },
  37. cli.StringFlag{
  38. Name: "pid, P",
  39. Value: "/var/run/gitea.pid",
  40. Usage: "Custom pid file path",
  41. },
  42. },
  43. }
  44. func runHTTPRedirector() {
  45. source := fmt.Sprintf("%s:%s", setting.HTTPAddr, setting.PortToRedirect)
  46. dest := strings.TrimSuffix(setting.AppURL, "/")
  47. log.Info("Redirecting: %s to %s", source, dest)
  48. handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  49. target := dest + r.URL.Path
  50. if len(r.URL.RawQuery) > 0 {
  51. target += "?" + r.URL.RawQuery
  52. }
  53. http.Redirect(w, r, target, http.StatusTemporaryRedirect)
  54. })
  55. var err = runHTTP(source, context2.ClearHandler(handler))
  56. if err != nil {
  57. log.Fatal("Failed to start port redirection: %v", err)
  58. }
  59. }
  60. func runLetsEncrypt(listenAddr, domain, directory, email string, m http.Handler) error {
  61. certManager := autocert.Manager{
  62. Prompt: autocert.AcceptTOS,
  63. HostPolicy: autocert.HostWhitelist(domain),
  64. Cache: autocert.DirCache(directory),
  65. Email: email,
  66. }
  67. go func() {
  68. log.Info("Running Let's Encrypt handler on %s", setting.HTTPAddr+":"+setting.PortToRedirect)
  69. var err = http.ListenAndServe(setting.HTTPAddr+":"+setting.PortToRedirect, certManager.HTTPHandler(http.HandlerFunc(runLetsEncryptFallbackHandler))) // all traffic coming into HTTP will be redirect to HTTPS automatically (LE HTTP-01 validation happens here)
  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. server := &http.Server{
  75. Addr: listenAddr,
  76. Handler: m,
  77. TLSConfig: &tls.Config{
  78. GetCertificate: certManager.GetCertificate,
  79. },
  80. }
  81. return server.ListenAndServeTLS("", "")
  82. }
  83. func runLetsEncryptFallbackHandler(w http.ResponseWriter, r *http.Request) {
  84. if r.Method != "GET" && r.Method != "HEAD" {
  85. http.Error(w, "Use HTTPS", http.StatusBadRequest)
  86. return
  87. }
  88. // Remove the trailing slash at the end of setting.AppURL, the request
  89. // URI always contains a leading slash, which would result in a double
  90. // slash
  91. target := strings.TrimRight(setting.AppURL, "/") + r.URL.RequestURI()
  92. http.Redirect(w, r, target, http.StatusFound)
  93. }
  94. func runWeb(ctx *cli.Context) error {
  95. if ctx.IsSet("pid") {
  96. setting.CustomPID = ctx.String("pid")
  97. }
  98. routers.GlobalInit()
  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. err = runHTTP(listenAddr, context2.ClearHandler(m))
  148. case setting.HTTPS:
  149. if setting.EnableLetsEncrypt {
  150. err = runLetsEncrypt(listenAddr, setting.Domain, setting.LetsEncryptDirectory, setting.LetsEncryptEmail, context2.ClearHandler(m))
  151. break
  152. }
  153. if setting.RedirectOtherPort {
  154. go runHTTPRedirector()
  155. }
  156. err = runHTTPS(listenAddr, setting.CertFile, setting.KeyFile, context2.ClearHandler(m))
  157. case setting.FCGI:
  158. var listener net.Listener
  159. listener, err = net.Listen("tcp", listenAddr)
  160. if err != nil {
  161. log.Fatal("Failed to bind %s: %v", listenAddr, err)
  162. }
  163. defer func() {
  164. if err := listener.Close(); err != nil {
  165. log.Fatal("Failed to stop server: %v", err)
  166. }
  167. }()
  168. err = fcgi.Serve(listener, context2.ClearHandler(m))
  169. case setting.UnixSocket:
  170. if err := os.Remove(listenAddr); err != nil && !os.IsNotExist(err) {
  171. log.Fatal("Failed to remove unix socket directory %s: %v", listenAddr, err)
  172. }
  173. var listener *net.UnixListener
  174. listener, err = net.ListenUnix("unix", &net.UnixAddr{Name: listenAddr, Net: "unix"})
  175. if err != nil {
  176. break // Handle error after switch
  177. }
  178. // FIXME: add proper implementation of signal capture on all protocols
  179. // execute this on SIGTERM or SIGINT: listener.Close()
  180. if err = os.Chmod(listenAddr, os.FileMode(setting.UnixSocketPermission)); err != nil {
  181. log.Fatal("Failed to set permission of unix socket: %v", err)
  182. }
  183. err = http.Serve(listener, context2.ClearHandler(m))
  184. default:
  185. log.Fatal("Invalid protocol: %s", setting.Protocol)
  186. }
  187. if err != nil {
  188. log.Fatal("Failed to start server: %v", err)
  189. }
  190. return nil
  191. }