2014-02-19 09:50:53 +00:00
// Copyright 2014 The Gogs Authors. All rights reserved.
2022-11-27 18:20:29 +00:00
// SPDX-License-Identifier: MIT
2014-02-19 09:50:53 +00:00
2014-05-02 01:21:46 +00:00
package cmd
2014-02-19 09:50:53 +00:00
import (
2019-12-15 09:51:28 +00:00
"context"
2014-02-19 09:50:53 +00:00
"fmt"
2020-07-26 20:31:28 +00:00
"net"
2014-02-19 09:50:53 +00:00
"net/http"
2014-04-16 00:01:20 +00:00
"os"
2023-03-16 07:22:54 +00:00
"path/filepath"
"strconv"
2014-09-29 09:38:46 +00:00
"strings"
2014-02-19 09:50:53 +00:00
2021-11-17 12:34:35 +00:00
_ "net/http/pprof" // Used for debugging if enabled and a web server is running
2019-10-23 15:32:19 +00:00
"code.gitea.io/gitea/modules/graceful"
2016-11-10 16:24:48 +00:00
"code.gitea.io/gitea/modules/log"
2022-03-31 17:01:43 +00:00
"code.gitea.io/gitea/modules/process"
2016-11-10 16:24:48 +00:00
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/routers"
2021-06-08 23:33:54 +00:00
"code.gitea.io/gitea/routers/install"
2016-12-26 01:16:37 +00:00
2022-06-18 10:04:52 +00:00
"github.com/felixge/fgprof"
2016-11-05 16:56:35 +00:00
"github.com/urfave/cli"
2014-02-19 09:50:53 +00:00
)
2023-03-16 07:22:54 +00:00
// PIDFile could be set from build tag
var PIDFile = "/run/gitea.pid"
2016-11-04 11:42:18 +00:00
// CmdWeb represents the available web sub-command.
2014-02-19 09:50:53 +00:00
var CmdWeb = cli . Command {
Name : "web" ,
2016-12-21 12:13:17 +00:00
Usage : "Start Gitea web server" ,
Description : ` Gitea web server is the only thing you need to run ,
2014-03-24 11:36:38 +00:00
and it takes care of all the other things for you ` ,
2014-02-19 09:50:53 +00:00
Action : runWeb ,
2015-02-01 17:41:03 +00:00
Flags : [ ] cli . Flag {
2016-11-09 22:18:22 +00:00
cli . StringFlag {
Name : "port, p" ,
Value : "3000" ,
Usage : "Temporary port number to prevent conflict" ,
} ,
2020-10-30 19:26:03 +00:00
cli . StringFlag {
Name : "install-port" ,
Value : "3000" ,
Usage : "Temporary port number to run the install page on to prevent conflict" ,
} ,
2017-01-09 11:54:57 +00:00
cli . StringFlag {
Name : "pid, P" ,
2023-03-16 07:22:54 +00:00
Value : PIDFile ,
2017-01-09 11:54:57 +00:00
Usage : "Custom pid file path" ,
} ,
2021-06-27 00:56:58 +00:00
cli . BoolFlag {
Name : "quiet, q" ,
Usage : "Only display Fatal logging errors until logging is set-up" ,
} ,
cli . BoolFlag {
Name : "verbose" ,
Usage : "Set initial logging to TRACE level until logging is properly set-up" ,
} ,
2015-02-01 17:41:03 +00:00
} ,
2014-02-19 09:50:53 +00:00
}
2017-12-25 22:23:43 +00:00
func runHTTPRedirector ( ) {
2022-03-31 17:01:43 +00:00
_ , _ , finished := process . GetManager ( ) . AddTypedContext ( graceful . GetManager ( ) . HammerContext ( ) , "Web: HTTP Redirector" , process . SystemProcessType , true )
defer finished ( )
2017-12-25 22:23:43 +00:00
source := fmt . Sprintf ( "%s:%s" , setting . HTTPAddr , setting . PortToRedirect )
dest := strings . TrimSuffix ( setting . AppURL , "/" )
log . Info ( "Redirecting: %s to %s" , source , dest )
handler := http . HandlerFunc ( func ( w http . ResponseWriter , r * http . Request ) {
target := dest + r . URL . Path
if len ( r . URL . RawQuery ) > 0 {
target += "?" + r . URL . RawQuery
}
http . Redirect ( w , r , target , http . StatusTemporaryRedirect )
} )
2022-08-21 18:20:43 +00:00
err := runHTTP ( "tcp" , source , "HTTP Redirector" , handler , setting . RedirectorUseProxyProtocol )
2017-12-25 22:23:43 +00:00
if err != nil {
2019-04-02 07:48:31 +00:00
log . Fatal ( "Failed to start port redirection: %v" , err )
2017-12-25 22:23:43 +00:00
}
}
2023-03-16 07:22:54 +00:00
func createPIDFile ( pidPath string ) {
currentPid := os . Getpid ( )
if err := os . MkdirAll ( filepath . Dir ( pidPath ) , os . ModePerm ) ; err != nil {
log . Fatal ( "Failed to create PID folder: %v" , err )
}
file , err := os . Create ( pidPath )
if err != nil {
log . Fatal ( "Failed to create PID file: %v" , err )
}
defer file . Close ( )
if _ , err := file . WriteString ( strconv . FormatInt ( int64 ( currentPid ) , 10 ) ) ; err != nil {
log . Fatal ( "Failed to write PID information: %v" , err )
}
}
Refactor path & config system (#25330)
# The problem
There were many "path tricks":
* By default, Gitea uses its program directory as its work path
* Gitea tries to use the "work path" to guess its "custom path" and
"custom conf (app.ini)"
* Users might want to use other directories as work path
* The non-default work path should be passed to Gitea by GITEA_WORK_DIR
or "--work-path"
* But some Gitea processes are started without these values
* The "serv" process started by OpenSSH server
* The CLI sub-commands started by site admin
* The paths are guessed by SetCustomPathAndConf again and again
* The default values of "work path / custom path / custom conf" can be
changed when compiling
# The solution
* Use `InitWorkPathAndCommonConfig` to handle these path tricks, and use
test code to cover its behaviors.
* When Gitea's web server runs, write the WORK_PATH to "app.ini", this
value must be the most correct one, because if this value is not right,
users would find that the web UI doesn't work and then they should be
able to fix it.
* Then all other sub-commands can use the WORK_PATH in app.ini to
initialize their paths.
* By the way, when Gitea starts for git protocol, it shouldn't output
any log, otherwise the git protocol gets broken and client blocks
forever.
The "work path" priority is: WORK_PATH in app.ini > cmd arg --work-path
> env var GITEA_WORK_DIR > builtin default
The "app.ini" searching order is: cmd arg --config > cmd arg "work path
/ custom path" > env var "work path / custom path" > builtin default
## ⚠️ BREAKING
If your instance's "work path / custom path / custom conf" doesn't meet
the requirements (eg: work path must be absolute), Gitea will report a
fatal error and exit. You need to set these values according to the
error log.
----
Close #24818
Close #24222
Close #21606
Close #21498
Close #25107
Close #24981
Maybe close #24503
Replace #23301
Replace #22754
And maybe more
2023-06-21 05:50:26 +00:00
func serveInstall ( ctx * cli . Context ) error {
log . Info ( "Gitea version: %s%s" , setting . AppVer , setting . AppBuiltWith )
log . Info ( "App path: %s" , setting . AppPath )
log . Info ( "Work path: %s" , setting . AppWorkPath )
log . Info ( "Custom path: %s" , setting . CustomPath )
log . Info ( "Config file: %s" , setting . CustomConf )
log . Info ( "Prepare to run install page" )
routers . InitWebInstallPage ( graceful . GetManager ( ) . HammerContext ( ) )
// Flag for port number in case first time run conflict
if ctx . IsSet ( "port" ) {
if err := setPort ( ctx . String ( "port" ) ) ; err != nil {
return err
}
}
if ctx . IsSet ( "install-port" ) {
if err := setPort ( ctx . String ( "install-port" ) ) ; err != nil {
return err
}
}
c := install . Routes ( )
err := listen ( c , false )
if err != nil {
log . Critical ( "Unable to open listener for installer. Is Gitea already running?" )
graceful . GetManager ( ) . DoGracefulShutdown ( )
}
select {
case <- graceful . GetManager ( ) . IsShutdown ( ) :
<- graceful . GetManager ( ) . Done ( )
log . Info ( "PID: %d Gitea Web Finished" , os . Getpid ( ) )
log . GetManager ( ) . Close ( )
return err
default :
}
return nil
}
func serveInstalled ( ctx * cli . Context ) error {
setting . InitCfgProvider ( setting . CustomConf )
setting . LoadCommonSettings ( )
setting . MustInstalled ( )
log . Info ( "Gitea version: %s%s" , setting . AppVer , setting . AppBuiltWith )
log . Info ( "App path: %s" , setting . AppPath )
log . Info ( "Work path: %s" , setting . AppWorkPath )
log . Info ( "Custom path: %s" , setting . CustomPath )
log . Info ( "Config file: %s" , setting . CustomConf )
log . Info ( "Run mode: %s" , setting . RunMode )
log . Info ( "Prepare to run web server" )
if setting . AppWorkPathMismatch {
log . Error ( "WORK_PATH from config %q doesn't match other paths from environment variables or command arguments. " +
"Only WORK_PATH in config should be set and used. Please remove the other outdated work paths from environment variables and command arguments" , setting . CustomConf )
}
rootCfg := setting . CfgProvider
if rootCfg . Section ( "" ) . Key ( "WORK_PATH" ) . String ( ) == "" {
saveCfg , err := rootCfg . PrepareSaving ( )
if err != nil {
log . Error ( "Unable to prepare saving WORK_PATH=%s to config %q: %v\nYou must set it manually, otherwise there might be bugs when accessing the git repositories." , setting . AppWorkPath , setting . CustomConf , err )
} else {
rootCfg . Section ( "" ) . Key ( "WORK_PATH" ) . SetValue ( setting . AppWorkPath )
saveCfg . Section ( "" ) . Key ( "WORK_PATH" ) . SetValue ( setting . AppWorkPath )
if err = saveCfg . Save ( ) ; err != nil {
log . Error ( "Unable to update WORK_PATH=%s to config %q: %v\nYou must set it manually, otherwise there might be bugs when accessing the git repositories." , setting . AppWorkPath , setting . CustomConf , err )
}
}
}
routers . InitWebInstalled ( graceful . GetManager ( ) . HammerContext ( ) )
// We check that AppDataPath exists here (it should have been created during installation)
// We can't check it in `InitWebInstalled`, because some integration tests
// use cmd -> InitWebInstalled, but the AppDataPath doesn't exist during those tests.
if _ , err := os . Stat ( setting . AppDataPath ) ; err != nil {
log . Fatal ( "Can not find APP_DATA_PATH %q" , setting . AppDataPath )
}
// Override the provided port number within the configuration
if ctx . IsSet ( "port" ) {
if err := setPort ( ctx . String ( "port" ) ) ; err != nil {
return err
}
}
// Set up Chi routes
c := routers . NormalRoutes ( )
err := listen ( c , true )
<- graceful . GetManager ( ) . Done ( )
log . Info ( "PID: %d Gitea Web Finished" , os . Getpid ( ) )
log . GetManager ( ) . Close ( )
return err
}
func servePprof ( ) {
http . DefaultServeMux . Handle ( "/debug/fgprof" , fgprof . Handler ( ) )
_ , _ , finished := process . GetManager ( ) . AddTypedContext ( context . Background ( ) , "Web: PProf Server" , process . SystemProcessType , true )
// The pprof server is for debug purpose only, it shouldn't be exposed on public network. At the moment it's not worth to introduce a configurable option for it.
log . Info ( "Starting pprof server on localhost:6060" )
log . Info ( "Stopped pprof server: %v" , http . ListenAndServe ( "localhost:6060" , nil ) )
finished ( )
}
2016-05-12 18:32:28 +00:00
func runWeb ( ctx * cli . Context ) error {
2021-06-27 00:56:58 +00:00
if ctx . Bool ( "verbose" ) {
Rewrite logger system (#24726)
## ⚠️ Breaking
The `log.<mode>.<logger>` style config has been dropped. If you used it,
please check the new config manual & app.example.ini to make your
instance output logs as expected.
Although many legacy options still work, it's encouraged to upgrade to
the new options.
The SMTP logger is deleted because SMTP is not suitable to collect logs.
If you have manually configured Gitea log options, please confirm the
logger system works as expected after upgrading.
## Description
Close #12082 and maybe more log-related issues, resolve some related
FIXMEs in old code (which seems unfixable before)
Just like rewriting queue #24505 : make code maintainable, clear legacy
bugs, and add the ability to support more writers (eg: JSON, structured
log)
There is a new document (with examples): `logging-config.en-us.md`
This PR is safer than the queue rewriting, because it's just for
logging, it won't break other logic.
## The old problems
The logging system is quite old and difficult to maintain:
* Unclear concepts: Logger, NamedLogger, MultiChannelledLogger,
SubLogger, EventLogger, WriterLogger etc
* Some code is diffuclt to konw whether it is right:
`log.DelNamedLogger("console")` vs `log.DelNamedLogger(log.DEFAULT)` vs
`log.DelLogger("console")`
* The old system heavily depends on ini config system, it's difficult to
create new logger for different purpose, and it's very fragile.
* The "color" trick is difficult to use and read, many colors are
unnecessary, and in the future structured log could help
* It's difficult to add other log formats, eg: JSON format
* The log outputer doesn't have full control of its goroutine, it's
difficult to make outputer have advanced behaviors
* The logs could be lost in some cases: eg: no Fatal error when using
CLI.
* Config options are passed by JSON, which is quite fragile.
* INI package makes the KEY in `[log]` section visible in `[log.sub1]`
and `[log.sub1.subA]`, this behavior is quite fragile and would cause
more unclear problems, and there is no strong requirement to support
`log.<mode>.<logger>` syntax.
## The new design
See `logger.go` for documents.
## Screenshot
<details>
![image](https://github.com/go-gitea/gitea/assets/2114189/4462d713-ba39-41f5-bb08-de912e67e1ff)
![image](https://github.com/go-gitea/gitea/assets/2114189/b188035e-f691-428b-8b2d-ff7b2199b2f9)
![image](https://github.com/go-gitea/gitea/assets/2114189/132e9745-1c3b-4e00-9e0d-15eaea495dee)
</details>
## TODO
* [x] add some new tests
* [x] fix some tests
* [x] test some sub-commands (manually ....)
---------
Co-authored-by: Jason Song <i@wolfogre.com>
Co-authored-by: delvh <dev.lh@web.de>
Co-authored-by: Giteabot <teabot@gitea.io>
2023-05-21 22:35:11 +00:00
setupConsoleLogger ( log . TRACE , log . CanColorStdout , os . Stdout )
2021-06-27 00:56:58 +00:00
} else if ctx . Bool ( "quiet" ) {
Rewrite logger system (#24726)
## ⚠️ Breaking
The `log.<mode>.<logger>` style config has been dropped. If you used it,
please check the new config manual & app.example.ini to make your
instance output logs as expected.
Although many legacy options still work, it's encouraged to upgrade to
the new options.
The SMTP logger is deleted because SMTP is not suitable to collect logs.
If you have manually configured Gitea log options, please confirm the
logger system works as expected after upgrading.
## Description
Close #12082 and maybe more log-related issues, resolve some related
FIXMEs in old code (which seems unfixable before)
Just like rewriting queue #24505 : make code maintainable, clear legacy
bugs, and add the ability to support more writers (eg: JSON, structured
log)
There is a new document (with examples): `logging-config.en-us.md`
This PR is safer than the queue rewriting, because it's just for
logging, it won't break other logic.
## The old problems
The logging system is quite old and difficult to maintain:
* Unclear concepts: Logger, NamedLogger, MultiChannelledLogger,
SubLogger, EventLogger, WriterLogger etc
* Some code is diffuclt to konw whether it is right:
`log.DelNamedLogger("console")` vs `log.DelNamedLogger(log.DEFAULT)` vs
`log.DelLogger("console")`
* The old system heavily depends on ini config system, it's difficult to
create new logger for different purpose, and it's very fragile.
* The "color" trick is difficult to use and read, many colors are
unnecessary, and in the future structured log could help
* It's difficult to add other log formats, eg: JSON format
* The log outputer doesn't have full control of its goroutine, it's
difficult to make outputer have advanced behaviors
* The logs could be lost in some cases: eg: no Fatal error when using
CLI.
* Config options are passed by JSON, which is quite fragile.
* INI package makes the KEY in `[log]` section visible in `[log.sub1]`
and `[log.sub1.subA]`, this behavior is quite fragile and would cause
more unclear problems, and there is no strong requirement to support
`log.<mode>.<logger>` syntax.
## The new design
See `logger.go` for documents.
## Screenshot
<details>
![image](https://github.com/go-gitea/gitea/assets/2114189/4462d713-ba39-41f5-bb08-de912e67e1ff)
![image](https://github.com/go-gitea/gitea/assets/2114189/b188035e-f691-428b-8b2d-ff7b2199b2f9)
![image](https://github.com/go-gitea/gitea/assets/2114189/132e9745-1c3b-4e00-9e0d-15eaea495dee)
</details>
## TODO
* [x] add some new tests
* [x] fix some tests
* [x] test some sub-commands (manually ....)
---------
Co-authored-by: Jason Song <i@wolfogre.com>
Co-authored-by: delvh <dev.lh@web.de>
Co-authored-by: Giteabot <teabot@gitea.io>
2023-05-21 22:35:11 +00:00
setupConsoleLogger ( log . FATAL , log . CanColorStdout , os . Stdout )
2021-06-27 00:56:58 +00:00
}
2021-08-23 19:40:59 +00:00
defer func ( ) {
if panicked := recover ( ) ; panicked != nil {
2022-01-20 11:41:25 +00:00
log . Fatal ( "PANIC: %v\n%s" , panicked , log . Stack ( 2 ) )
2021-08-23 19:40:59 +00:00
}
} ( )
2021-06-27 00:56:58 +00:00
2019-12-15 09:51:28 +00:00
managerCtx , cancel := context . WithCancel ( context . Background ( ) )
graceful . InitManager ( managerCtx )
defer cancel ( )
2019-10-15 13:39:51 +00:00
if os . Getppid ( ) > 1 && len ( os . Getenv ( "LISTEN_FDS" ) ) > 0 {
log . Info ( "Restarting Gitea on PID: %d from parent PID: %d" , os . Getpid ( ) , os . Getppid ( ) )
} else {
log . Info ( "Starting Gitea on PID: %d" , os . Getpid ( ) )
}
// Set pid file setting
2017-01-09 11:54:57 +00:00
if ctx . IsSet ( "pid" ) {
2023-03-16 07:22:54 +00:00
createPIDFile ( ctx . String ( "pid" ) )
2017-01-09 11:54:57 +00:00
}
Refactor path & config system (#25330)
# The problem
There were many "path tricks":
* By default, Gitea uses its program directory as its work path
* Gitea tries to use the "work path" to guess its "custom path" and
"custom conf (app.ini)"
* Users might want to use other directories as work path
* The non-default work path should be passed to Gitea by GITEA_WORK_DIR
or "--work-path"
* But some Gitea processes are started without these values
* The "serv" process started by OpenSSH server
* The CLI sub-commands started by site admin
* The paths are guessed by SetCustomPathAndConf again and again
* The default values of "work path / custom path / custom conf" can be
changed when compiling
# The solution
* Use `InitWorkPathAndCommonConfig` to handle these path tricks, and use
test code to cover its behaviors.
* When Gitea's web server runs, write the WORK_PATH to "app.ini", this
value must be the most correct one, because if this value is not right,
users would find that the web UI doesn't work and then they should be
able to fix it.
* Then all other sub-commands can use the WORK_PATH in app.ini to
initialize their paths.
* By the way, when Gitea starts for git protocol, it shouldn't output
any log, otherwise the git protocol gets broken and client blocks
forever.
The "work path" priority is: WORK_PATH in app.ini > cmd arg --work-path
> env var GITEA_WORK_DIR > builtin default
The "app.ini" searching order is: cmd arg --config > cmd arg "work path
/ custom path" > env var "work path / custom path" > builtin default
## ⚠️ BREAKING
If your instance's "work path / custom path / custom conf" doesn't meet
the requirements (eg: work path must be absolute), Gitea will report a
fatal error and exit. You need to set these values according to the
error log.
----
Close #24818
Close #24222
Close #21606
Close #21498
Close #25107
Close #24981
Maybe close #24503
Replace #23301
Replace #22754
And maybe more
2023-06-21 05:50:26 +00:00
if ! setting . InstallLock {
if err := serveInstall ( ctx ) ; err != nil {
2020-10-19 21:03:08 +00:00
return err
}
} else {
NoInstallListener ( )
}
if setting . EnablePprof {
Refactor path & config system (#25330)
# The problem
There were many "path tricks":
* By default, Gitea uses its program directory as its work path
* Gitea tries to use the "work path" to guess its "custom path" and
"custom conf (app.ini)"
* Users might want to use other directories as work path
* The non-default work path should be passed to Gitea by GITEA_WORK_DIR
or "--work-path"
* But some Gitea processes are started without these values
* The "serv" process started by OpenSSH server
* The CLI sub-commands started by site admin
* The paths are guessed by SetCustomPathAndConf again and again
* The default values of "work path / custom path / custom conf" can be
changed when compiling
# The solution
* Use `InitWorkPathAndCommonConfig` to handle these path tricks, and use
test code to cover its behaviors.
* When Gitea's web server runs, write the WORK_PATH to "app.ini", this
value must be the most correct one, because if this value is not right,
users would find that the web UI doesn't work and then they should be
able to fix it.
* Then all other sub-commands can use the WORK_PATH in app.ini to
initialize their paths.
* By the way, when Gitea starts for git protocol, it shouldn't output
any log, otherwise the git protocol gets broken and client blocks
forever.
The "work path" priority is: WORK_PATH in app.ini > cmd arg --work-path
> env var GITEA_WORK_DIR > builtin default
The "app.ini" searching order is: cmd arg --config > cmd arg "work path
/ custom path" > env var "work path / custom path" > builtin default
## ⚠️ BREAKING
If your instance's "work path / custom path / custom conf" doesn't meet
the requirements (eg: work path must be absolute), Gitea will report a
fatal error and exit. You need to set these values according to the
error log.
----
Close #24818
Close #24222
Close #21606
Close #21498
Close #25107
Close #24981
Maybe close #24503
Replace #23301
Replace #22754
And maybe more
2023-06-21 05:50:26 +00:00
go servePprof ( )
2020-10-19 21:03:08 +00:00
}
Refactor path & config system (#25330)
# The problem
There were many "path tricks":
* By default, Gitea uses its program directory as its work path
* Gitea tries to use the "work path" to guess its "custom path" and
"custom conf (app.ini)"
* Users might want to use other directories as work path
* The non-default work path should be passed to Gitea by GITEA_WORK_DIR
or "--work-path"
* But some Gitea processes are started without these values
* The "serv" process started by OpenSSH server
* The CLI sub-commands started by site admin
* The paths are guessed by SetCustomPathAndConf again and again
* The default values of "work path / custom path / custom conf" can be
changed when compiling
# The solution
* Use `InitWorkPathAndCommonConfig` to handle these path tricks, and use
test code to cover its behaviors.
* When Gitea's web server runs, write the WORK_PATH to "app.ini", this
value must be the most correct one, because if this value is not right,
users would find that the web UI doesn't work and then they should be
able to fix it.
* Then all other sub-commands can use the WORK_PATH in app.ini to
initialize their paths.
* By the way, when Gitea starts for git protocol, it shouldn't output
any log, otherwise the git protocol gets broken and client blocks
forever.
The "work path" priority is: WORK_PATH in app.ini > cmd arg --work-path
> env var GITEA_WORK_DIR > builtin default
The "app.ini" searching order is: cmd arg --config > cmd arg "work path
/ custom path" > env var "work path / custom path" > builtin default
## ⚠️ BREAKING
If your instance's "work path / custom path / custom conf" doesn't meet
the requirements (eg: work path must be absolute), Gitea will report a
fatal error and exit. You need to set these values according to the
error log.
----
Close #24818
Close #24222
Close #21606
Close #21498
Close #25107
Close #24981
Maybe close #24503
Replace #23301
Replace #22754
And maybe more
2023-06-21 05:50:26 +00:00
return serveInstalled ( ctx )
2020-10-19 21:03:08 +00:00
}
2017-12-13 08:57:28 +00:00
2020-10-19 21:03:08 +00:00
func setPort ( port string ) error {
setting . AppURL = strings . Replace ( setting . AppURL , setting . HTTPPort , port , 1 )
setting . HTTPPort = port
2017-12-13 08:57:28 +00:00
2020-10-19 21:03:08 +00:00
switch setting . Protocol {
2021-12-06 04:46:11 +00:00
case setting . HTTPUnix :
2020-10-19 21:03:08 +00:00
case setting . FCGI :
case setting . FCGIUnix :
default :
defaultLocalURL := string ( setting . Protocol ) + "://"
if setting . HTTPAddr == "0.0.0.0" {
defaultLocalURL += "localhost"
} else {
defaultLocalURL += setting . HTTPAddr
}
defaultLocalURL += ":" + setting . HTTPPort + "/"
2017-12-13 08:57:28 +00:00
2021-05-29 18:44:14 +00:00
// Save LOCAL_ROOT_URL if port changed
2023-06-21 02:31:40 +00:00
rootCfg := setting . CfgProvider
saveCfg , err := rootCfg . PrepareSaving ( )
if err != nil {
return fmt . Errorf ( "failed to save config file: %v" , err )
}
rootCfg . Section ( "server" ) . Key ( "LOCAL_ROOT_URL" ) . SetValue ( defaultLocalURL )
saveCfg . Section ( "server" ) . Key ( "LOCAL_ROOT_URL" ) . SetValue ( defaultLocalURL )
if err = saveCfg . Save ( ) ; err != nil {
return fmt . Errorf ( "failed to save config file: %v" , err )
2023-04-25 15:06:39 +00:00
}
2015-02-01 17:41:03 +00:00
}
2020-10-19 21:03:08 +00:00
return nil
}
2015-02-01 17:41:03 +00:00
2020-11-13 12:51:07 +00:00
func listen ( m http . Handler , handleRedirector bool ) error {
2018-01-12 22:16:49 +00:00
listenAddr := setting . HTTPAddr
2021-12-06 04:46:11 +00:00
if setting . Protocol != setting . HTTPUnix && setting . Protocol != setting . FCGIUnix {
2020-07-26 20:31:28 +00:00
listenAddr = net . JoinHostPort ( listenAddr , setting . HTTPPort )
2016-08-11 21:46:33 +00:00
}
2022-03-31 17:01:43 +00:00
_ , _ , finished := process . GetManager ( ) . AddTypedContext ( graceful . GetManager ( ) . HammerContext ( ) , "Web: Gitea Server" , process . SystemProcessType , true )
defer finished ( )
2016-11-27 10:14:25 +00:00
log . Info ( "Listen: %v://%s%s" , setting . Protocol , listenAddr , setting . AppSubURL )
2021-11-01 08:39:52 +00:00
// This can be useful for users, many users do wrong to their config and get strange behaviors behind a reverse-proxy.
// A user may fix the configuration mistake when he sees this log.
// And this is also very helpful to maintainers to provide help to users to resolve their configuration problems.
log . Info ( "AppURL(ROOT_URL): %s" , setting . AppURL )
2016-08-11 21:55:10 +00:00
2016-12-26 01:16:37 +00:00
if setting . LFS . StartServer {
log . Info ( "LFS server enabled" )
}
2016-08-11 21:55:10 +00:00
var err error
2014-05-26 00:11:25 +00:00
switch setting . Protocol {
case setting . HTTP :
2020-10-19 21:03:08 +00:00
if handleRedirector {
NoHTTPRedirector ( )
}
2022-08-21 18:20:43 +00:00
err = runHTTP ( "tcp" , listenAddr , "Web" , m , setting . UseProxyProtocol )
2014-05-26 00:11:25 +00:00
case setting . HTTPS :
2022-02-08 05:45:35 +00:00
if setting . EnableAcme {
err = runACME ( listenAddr , m )
2018-08-21 13:56:50 +00:00
break
2022-08-21 18:20:43 +00:00
}
if handleRedirector {
if setting . RedirectOtherPort {
go runHTTPRedirector ( )
} else {
NoHTTPRedirector ( )
2020-10-19 21:03:08 +00:00
}
2017-12-25 22:23:43 +00:00
}
2022-08-21 18:20:43 +00:00
err = runHTTPS ( "tcp" , listenAddr , "Web" , setting . CertFile , setting . KeyFile , m , setting . UseProxyProtocol , setting . ProxyProtocolTLSBridging )
2014-11-04 01:46:53 +00:00
case setting . FCGI :
2020-10-19 21:03:08 +00:00
if handleRedirector {
NoHTTPRedirector ( )
}
2022-08-21 18:20:43 +00:00
err = runFCGI ( "tcp" , listenAddr , "FCGI Web" , m , setting . UseProxyProtocol )
2021-12-06 04:46:11 +00:00
case setting . HTTPUnix :
2020-10-19 21:03:08 +00:00
if handleRedirector {
NoHTTPRedirector ( )
}
2022-08-21 18:20:43 +00:00
err = runHTTP ( "unix" , listenAddr , "Web" , m , setting . UseProxyProtocol )
2019-12-10 12:23:26 +00:00
case setting . FCGIUnix :
2020-10-19 21:03:08 +00:00
if handleRedirector {
NoHTTPRedirector ( )
}
2022-08-21 18:20:43 +00:00
err = runFCGI ( "unix" , listenAddr , "Web" , m , setting . UseProxyProtocol )
2014-05-26 00:11:25 +00:00
default :
2019-04-02 07:48:31 +00:00
log . Fatal ( "Invalid protocol: %s" , setting . Protocol )
2014-05-26 00:11:25 +00:00
}
if err != nil {
2019-10-15 13:39:51 +00:00
log . Critical ( "Failed to start server: %v" , err )
2014-03-18 13:58:58 +00:00
}
2019-10-15 13:39:51 +00:00
log . Info ( "HTTP Listener: %s Closed" , listenAddr )
2020-10-19 21:03:08 +00:00
return err
2014-02-19 09:50:53 +00:00
}