Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change PIDFile default from /var/run/gitea.pid to /run/gitea.pid #12500

Merged
merged 4 commits into from
Aug 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/doc/installation/from-source.en-us.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ launched manually from command line, it can be killed by pressing `Ctrl + C`.
./gitea web
```

## Changing the default CustomPath, CustomConf and AppWorkPath
## Changing default paths

Gitea will search for a number of things from the `CustomPath`. By default this is
the `custom/` directory in the current working directory when running Gitea. It will also
Expand Down
2 changes: 1 addition & 1 deletion modules/setting/setting.go
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ var (
Cfg *ini.File
CustomPath string // Custom directory path
CustomConf string
PIDFile = "/var/run/gitea.pid"
PIDFile = "/run/gitea.pid"
WritePIDFile bool
ProdMode bool
RunUser string
Expand Down