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 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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"
  8. "net/http"
  9. "net/http/fcgi"
  10. _ "net/http/pprof" // Used for debugging if enabled and a web server is running
  11. "os"
  12. "strings"
  13. "code.gitea.io/gitea/modules/log"
  14. "code.gitea.io/gitea/modules/markup/external"
  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. 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: "config, c",
  38. Value: "custom/conf/app.ini",
  39. Usage: "Custom configuration file path",
  40. },
  41. cli.StringFlag{
  42. Name: "pid, P",
  43. Value: "/var/run/gitea.pid",
  44. Usage: "Custom pid file path",
  45. },
  46. },
  47. }
  48. func runHTTPRedirector() {
  49. source := fmt.Sprintf("%s:%s", setting.HTTPAddr, setting.PortToRedirect)
  50. dest := strings.TrimSuffix(setting.AppURL, "/")
  51. log.Info("Redirecting: %s to %s", source, dest)
  52. handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  53. target := dest + r.URL.Path
  54. if len(r.URL.RawQuery) > 0 {
  55. target += "?" + r.URL.RawQuery
  56. }
  57. http.Redirect(w, r, target, http.StatusTemporaryRedirect)
  58. })
  59. var err = runHTTP(source, context2.ClearHandler(handler))
  60. if err != nil {
  61. log.Fatal(4, "Failed to start port redirection: %v", err)
  62. }
  63. }
  64. func runWeb(ctx *cli.Context) error {
  65. if ctx.IsSet("config") {
  66. setting.CustomConf = ctx.String("config")
  67. }
  68. if ctx.IsSet("pid") {
  69. setting.CustomPID = ctx.String("pid")
  70. }
  71. routers.GlobalInit()
  72. external.RegisterParsers()
  73. m := routes.NewMacaron()
  74. routes.RegisterRoutes(m)
  75. // Flag for port number in case first time run conflict.
  76. if ctx.IsSet("port") {
  77. setting.AppURL = strings.Replace(setting.AppURL, setting.HTTPPort, ctx.String("port"), 1)
  78. setting.HTTPPort = ctx.String("port")
  79. switch setting.Protocol {
  80. case setting.UnixSocket:
  81. case setting.FCGI:
  82. default:
  83. // Save LOCAL_ROOT_URL if port changed
  84. cfg := ini.Empty()
  85. if com.IsFile(setting.CustomConf) {
  86. // Keeps custom settings if there is already something.
  87. if err := cfg.Append(setting.CustomConf); err != nil {
  88. return fmt.Errorf("Failed to load custom conf '%s': %v", setting.CustomConf, err)
  89. }
  90. }
  91. defaultLocalURL := string(setting.Protocol) + "://"
  92. if setting.HTTPAddr == "0.0.0.0" {
  93. defaultLocalURL += "localhost"
  94. } else {
  95. defaultLocalURL += setting.HTTPAddr
  96. }
  97. defaultLocalURL += ":" + setting.HTTPPort + "/"
  98. cfg.Section("server").Key("LOCAL_ROOT_URL").SetValue(defaultLocalURL)
  99. if err := cfg.SaveTo(setting.CustomConf); err != nil {
  100. return fmt.Errorf("Error saving generated JWT Secret to custom config: %v", err)
  101. }
  102. }
  103. }
  104. listenAddr := setting.HTTPAddr
  105. if setting.Protocol != setting.UnixSocket {
  106. listenAddr += ":" + setting.HTTPPort
  107. }
  108. log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubURL)
  109. if setting.LFS.StartServer {
  110. log.Info("LFS server enabled")
  111. }
  112. if setting.EnablePprof {
  113. go func() {
  114. log.Info("Starting pprof server on localhost:6060")
  115. log.Info("%v", http.ListenAndServe("localhost:6060", nil))
  116. }()
  117. }
  118. var err error
  119. switch setting.Protocol {
  120. case setting.HTTP:
  121. err = runHTTP(listenAddr, context2.ClearHandler(m))
  122. case setting.HTTPS:
  123. if setting.RedirectOtherPort {
  124. go runHTTPRedirector()
  125. }
  126. err = runHTTPS(listenAddr, setting.CertFile, setting.KeyFile, context2.ClearHandler(m))
  127. case setting.FCGI:
  128. listener, err := net.Listen("tcp", listenAddr)
  129. if err != nil {
  130. log.Fatal(4, "Failed to bind %s", listenAddr, err)
  131. }
  132. defer listener.Close()
  133. err = fcgi.Serve(listener, context2.ClearHandler(m))
  134. case setting.UnixSocket:
  135. if err := os.Remove(listenAddr); err != nil && !os.IsNotExist(err) {
  136. log.Fatal(4, "Failed to remove unix socket directory %s: %v", listenAddr, err)
  137. }
  138. var listener *net.UnixListener
  139. listener, err = net.ListenUnix("unix", &net.UnixAddr{Name: listenAddr, Net: "unix"})
  140. if err != nil {
  141. break // Handle error after switch
  142. }
  143. // FIXME: add proper implementation of signal capture on all protocols
  144. // execute this on SIGTERM or SIGINT: listener.Close()
  145. if err = os.Chmod(listenAddr, os.FileMode(setting.UnixSocketPermission)); err != nil {
  146. log.Fatal(4, "Failed to set permission of unix socket: %v", err)
  147. }
  148. err = http.Serve(listener, context2.ClearHandler(m))
  149. default:
  150. log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
  151. }
  152. if err != nil {
  153. log.Fatal(4, "Failed to start server: %v", err)
  154. }
  155. return nil
  156. }