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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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/markup/external"
  16. "code.gitea.io/gitea/modules/setting"
  17. "code.gitea.io/gitea/routers"
  18. "code.gitea.io/gitea/routers/routes"
  19. "github.com/Unknwon/com"
  20. context2 "github.com/gorilla/context"
  21. "github.com/urfave/cli"
  22. "golang.org/x/crypto/acme/autocert"
  23. ini "gopkg.in/ini.v1"
  24. )
  25. // CmdWeb represents the available web sub-command.
  26. var CmdWeb = cli.Command{
  27. Name: "web",
  28. Usage: "Start Gitea web server",
  29. Description: `Gitea web server is the only thing you need to run,
  30. and it takes care of all the other things for you`,
  31. Action: runWeb,
  32. Flags: []cli.Flag{
  33. cli.StringFlag{
  34. Name: "port, p",
  35. Value: "3000",
  36. Usage: "Temporary port number to prevent conflict",
  37. },
  38. cli.StringFlag{
  39. Name: "config, c",
  40. Value: "custom/conf/app.ini",
  41. Usage: "Custom configuration file path",
  42. },
  43. cli.StringFlag{
  44. Name: "pid, P",
  45. Value: "/var/run/gitea.pid",
  46. Usage: "Custom pid file path",
  47. },
  48. },
  49. }
  50. func runHTTPRedirector() {
  51. source := fmt.Sprintf("%s:%s", setting.HTTPAddr, setting.PortToRedirect)
  52. dest := strings.TrimSuffix(setting.AppURL, "/")
  53. log.Info("Redirecting: %s to %s", source, dest)
  54. handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  55. target := dest + r.URL.Path
  56. if len(r.URL.RawQuery) > 0 {
  57. target += "?" + r.URL.RawQuery
  58. }
  59. http.Redirect(w, r, target, http.StatusTemporaryRedirect)
  60. })
  61. var err = runHTTP(source, context2.ClearHandler(handler))
  62. if err != nil {
  63. log.Fatal(4, "Failed to start port redirection: %v", err)
  64. }
  65. }
  66. func runLetsEncrypt(listenAddr, domain, directory, email string, m http.Handler) error {
  67. certManager := autocert.Manager{
  68. Prompt: autocert.AcceptTOS,
  69. HostPolicy: autocert.HostWhitelist(domain),
  70. Cache: autocert.DirCache(directory),
  71. Email: email,
  72. }
  73. go http.ListenAndServe(listenAddr+":"+setting.PortToRedirect, certManager.HTTPHandler(http.HandlerFunc(runLetsEncryptFallbackHandler))) // all traffic coming into HTTP will be redirect to HTTPS automatically (LE HTTP-01 validatio happens here)
  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. target := setting.AppURL + r.URL.RequestURI()
  89. http.Redirect(w, r, target, http.StatusFound)
  90. }
  91. func runWeb(ctx *cli.Context) error {
  92. if ctx.IsSet("config") {
  93. setting.CustomConf = ctx.String("config")
  94. }
  95. if ctx.IsSet("pid") {
  96. setting.CustomPID = ctx.String("pid")
  97. }
  98. routers.GlobalInit()
  99. external.RegisterParsers()
  100. m := routes.NewMacaron()
  101. routes.RegisterRoutes(m)
  102. // Flag for port number in case first time run conflict.
  103. if ctx.IsSet("port") {
  104. setting.AppURL = strings.Replace(setting.AppURL, setting.HTTPPort, ctx.String("port"), 1)
  105. setting.HTTPPort = ctx.String("port")
  106. switch setting.Protocol {
  107. case setting.UnixSocket:
  108. case setting.FCGI:
  109. default:
  110. // Save LOCAL_ROOT_URL if port changed
  111. cfg := ini.Empty()
  112. if com.IsFile(setting.CustomConf) {
  113. // Keeps custom settings if there is already something.
  114. if err := cfg.Append(setting.CustomConf); err != nil {
  115. return fmt.Errorf("Failed to load custom conf '%s': %v", setting.CustomConf, err)
  116. }
  117. }
  118. defaultLocalURL := string(setting.Protocol) + "://"
  119. if setting.HTTPAddr == "0.0.0.0" {
  120. defaultLocalURL += "localhost"
  121. } else {
  122. defaultLocalURL += setting.HTTPAddr
  123. }
  124. defaultLocalURL += ":" + setting.HTTPPort + "/"
  125. cfg.Section("server").Key("LOCAL_ROOT_URL").SetValue(defaultLocalURL)
  126. if err := cfg.SaveTo(setting.CustomConf); err != nil {
  127. return fmt.Errorf("Error saving generated JWT Secret to custom config: %v", err)
  128. }
  129. }
  130. }
  131. listenAddr := setting.HTTPAddr
  132. if setting.Protocol != setting.UnixSocket {
  133. listenAddr += ":" + setting.HTTPPort
  134. }
  135. log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubURL)
  136. if setting.LFS.StartServer {
  137. log.Info("LFS server enabled")
  138. }
  139. if setting.EnablePprof {
  140. go func() {
  141. log.Info("Starting pprof server on localhost:6060")
  142. log.Info("%v", http.ListenAndServe("localhost:6060", nil))
  143. }()
  144. }
  145. var err error
  146. switch setting.Protocol {
  147. case setting.HTTP:
  148. err = runHTTP(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. }
  157. err = runHTTPS(listenAddr, setting.CertFile, setting.KeyFile, context2.ClearHandler(m))
  158. case setting.FCGI:
  159. listener, err := net.Listen("tcp", listenAddr)
  160. if err != nil {
  161. log.Fatal(4, "Failed to bind %s", listenAddr, err)
  162. }
  163. defer listener.Close()
  164. err = fcgi.Serve(listener, context2.ClearHandler(m))
  165. case setting.UnixSocket:
  166. if err := os.Remove(listenAddr); err != nil && !os.IsNotExist(err) {
  167. log.Fatal(4, "Failed to remove unix socket directory %s: %v", listenAddr, err)
  168. }
  169. var listener *net.UnixListener
  170. listener, err = net.ListenUnix("unix", &net.UnixAddr{Name: listenAddr, Net: "unix"})
  171. if err != nil {
  172. break // Handle error after switch
  173. }
  174. // FIXME: add proper implementation of signal capture on all protocols
  175. // execute this on SIGTERM or SIGINT: listener.Close()
  176. if err = os.Chmod(listenAddr, os.FileMode(setting.UnixSocketPermission)); err != nil {
  177. log.Fatal(4, "Failed to set permission of unix socket: %v", err)
  178. }
  179. err = http.Serve(listener, context2.ClearHandler(m))
  180. default:
  181. log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
  182. }
  183. if err != nil {
  184. log.Fatal(4, "Failed to start server: %v", err)
  185. }
  186. return nil
  187. }