diff options
author | techknowlogick <techknowlogick@gitea.io> | 2023-05-25 04:13:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-25 16:13:47 +0800 |
commit | 033d92997fc16baee097d2b25f08e0984e628abd (patch) | |
tree | 731c2ed48759bbb86baeb837c7da8a06078a03a3 /docs/content | |
parent | cff4e37d43595d0ad22b634c274d62b04ab9a468 (diff) | |
download | gitea-033d92997fc16baee097d2b25f08e0984e628abd.tar.gz gitea-033d92997fc16baee097d2b25f08e0984e628abd.zip |
Allow skipping forks and mirrors from being indexed (#23187)
This PR adds two new options to disable repo/code search indexing of
both forks and mirrors.
Related: #22842
Diffstat (limited to 'docs/content')
-rw-r--r-- | docs/content/doc/administration/config-cheat-sheet.en-us.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/content/doc/administration/config-cheat-sheet.en-us.md b/docs/content/doc/administration/config-cheat-sheet.en-us.md index 9bb2533dac..9616be586d 100644 --- a/docs/content/doc/administration/config-cheat-sheet.en-us.md +++ b/docs/content/doc/administration/config-cheat-sheet.en-us.md @@ -465,6 +465,7 @@ relation to port exhaustion. - `ISSUE_INDEXER_PATH`: **indexers/issues.bleve**: Index file used for issue search; available when ISSUE_INDEXER_TYPE is bleve and elasticsearch. Relative paths will be made absolute against _`AppWorkPath`_. - `REPO_INDEXER_ENABLED`: **false**: Enables code search (uses a lot of disk space, about 6 times more than the repository size). +- `REPO_INDEXER_REPO_TYPES`: **sources,forks,mirrors,templates**: Repo indexer units. The items to index could be `sources`, `forks`, `mirrors`, `templates` or any combination of them separated by a comma. If empty then it defaults to `sources` only, as if you'd like to disable fully please see `REPO_INDEXER_ENABLED`. - `REPO_INDEXER_TYPE`: **bleve**: Code search engine type, could be `bleve` or `elasticsearch`. - `REPO_INDEXER_PATH`: **indexers/repos.bleve**: Index file used for code search. - `REPO_INDEXER_CONN_STR`: ****: Code indexer connection string, available when `REPO_INDEXER_TYPE` is elasticsearch. i.e. http://elastic:changeme@localhost:9200 |