You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/content/doc/advanced/config-cheat-sheet.en-us.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -180,9 +180,9 @@ The following configuration set `Content-Type: application/vnd.android.package-a
180
180
-`MAX_DISPLAY_FILE_SIZE`: **8388608**: Max size of files to be displayed (default is 8MiB)
181
181
-`REACTIONS`: All available reactions users can choose on issues/prs and comments
182
182
Values can be emoji alias (:smile:) or a unicode emoji.
183
-
For custom reactions, add a tightly cropped square image to public/emoji/img/reaction_name.png
184
-
-`CUSTOM_EMOJIS`: **gitea**: Additional Emojis not defined in the utf8 standard.
185
-
By default we support gitea (:gitea:), to add more copy them to public/emoji/img/emoji_name.png and
183
+
For custom reactions, add a tightly cropped square image to public/img/emoji/reaction_name.png
184
+
-`CUSTOM_EMOJIS`: **gitea, codeberg, gitlab, git, github, gogs**: Additional Emojis not defined in the utf8 standard.
185
+
By default we support gitea (:gitea:), to add more copy them to public/img/emoji/emoji_name.png and
186
186
add it to this config.
187
187
-`DEFAULT_SHOW_FULL_NAME`: **false**: Whether the full name of the users should be shown where possible. If the full name isn't set, the username will be used.
188
188
-`SEARCH_REPO_DESCRIPTION`: **true**: Whether to search within description at repository search on explore page.
@@ -392,7 +392,7 @@ relation to port exhaustion.
392
392
-`MAX_ATTEMPTS`: **10**: Maximum number of attempts to create the wrapped queue
393
393
-`TIMEOUT`: **GRACEFUL_HAMMER_TIME + 30s**: Timeout the creation of the wrapped queue if it takes longer than this to create.
394
394
- Queues by default come with a dynamically scaling worker pool. The following settings configure this:
395
-
-`WORKERS`: **0** (v1.14 and before: **1**): Number of initial workers for the queue.
395
+
-`WORKERS`: **0** (v1.14 and before: **1**): Number of initial workers for the queue.
396
396
-`MAX_WORKERS`: **10**: Maximum number of worker go-routines for the queue.
397
397
-`BLOCK_TIMEOUT`: **1s**: If the queue blocks for this time, boost the number of workers - the `BLOCK_TIMEOUT` will then be doubled before boosting again whilst the boost is ongoing.
398
398
-`BOOST_TIMEOUT`: **5m**: Boost workers will timeout after this long.
@@ -837,7 +837,7 @@ NB: You must have `DISABLE_ROUTER_LOG` set to `false` for this option to take ef
837
837
-`PULL_REQUEST_PUSH_MESSAGE`: **true**: Respond to pushes to a non-default branch with a URL for creating a Pull Request (if the repository has them enabled)
838
838
-`VERBOSE_PUSH`: **true**: Print status information about pushes as they are being processed.
839
839
-`VERBOSE_PUSH_DELAY`: **5s**: Only print verbose information if push takes longer than this delay.
840
-
840
+
-`LARGE_OBJECT_THRESHOLD`: **1048576**: (Go-Git only), don't cache objects greater than this in memory. (Set to 0 to disable.)
Copy file name to clipboardexpand all lines: docs/content/doc/installation/from-binary.en-us.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -32,13 +32,17 @@ chmod +x gitea
32
32
```
33
33
34
34
## Verify GPG signature
35
-
Gitea signs all binaries with a [GPG key](https://keys.openpgp.org/search?q=teabot%40gitea.io) to prevent against unwanted modification of binaries. To validate the binary, download the signature file which ends in `.asc` for the binary you downloaded and use the gpg command line tool.
35
+
Gitea signs all binaries with a [GPG key](https://keys.openpgp.org/search?q=teabot%40gitea.io) to prevent against unwanted modification of binaries.
36
+
To validate the binary, download the signature file which ends in `.asc` for the binary you downloaded and use the gpg command line tool.
gpg --verify gitea-{{< version >}}-linux-amd64.asc gitea-{{< version >}}-linux-amd64
40
41
```
41
42
43
+
Look for the text `Good signature from "Teabot <[email protected]>"` to assert a good binary,
44
+
despite warnings like `This key is not certified with a trusted signature!`.
45
+
42
46
## Recommended server configuration
43
47
44
48
**NOTE:** Many of the following directories can be configured using [Environment Variables]({{< relref "doc/advanced/environment-variables.en-us.md" >}}) as well!
0 commit comments