Skip to content

Commit b9d9169

Browse files
authored
In administration documentation about environment variables, point to those for the Go runtime instead of Go compiler (#28859)
The previous variables are used by the compiler and aren't too useful for non-developers. The newly listed variables are more likely to be of interest. Apologies for this drive-by PR, I probably missed instructions from the contributors guide. The patch can be regarded as a simple way to explain the problem and solution. Feel free to close and possibly create a new PR that does adhere to the contributors guide.
1 parent 62f9952 commit b9d9169

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

docs/content/administration/environment-variables.en-us.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,15 @@ GITEA_CUSTOM=/home/gitea/custom ./gitea web
2727

2828
## From Go language
2929

30-
As Gitea is written in Go, it uses some Go variables, such as:
30+
As Gitea is written in Go, it uses some variables that influence the behaviour of Go's runtime, such as:
3131

32-
- `GOOS`
33-
- `GOARCH`
34-
- [`GOPATH`](https://golang.org/cmd/go/#hdr-GOPATH_environment_variable)
32+
- `GOMEMLIMIT`
33+
- `GOGC`
34+
- `GOMAXPROCS`
35+
- `GODEBUG`
3536

3637
For documentation about each of the variables available, refer to the
37-
[official Go documentation](https://golang.org/cmd/go/#hdr-Environment_variables).
38+
[official Go documentation on runtime environment variables](https://pkg.go.dev/runtime#hdr-Environment_Variables).
3839

3940
## Gitea files
4041

0 commit comments

Comments
 (0)