Browse Source

Add missing indexer doc in configuration (#3324)

* Add missing indexer doc in configuration

* Unify MAX_FILE_SIZE to 1024 * 1024
tags/v1.4.0-rc1
Antoine GIRARD 6 years ago
parent
commit
cb868b7851
2 changed files with 9 additions and 1 deletions
  1. 8
    0
      docs/content/doc/advanced/config-cheat-sheet.en-us.md
  2. 1
    1
      models/models.go

+ 8
- 0
docs/content/doc/advanced/config-cheat-sheet.en-us.md View File

@@ -101,6 +101,14 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`.
- `SSL_MODE`: **disable**: For PostgreSQL only.
- `PATH`: **data/gitea.db**: For SQLite3 only, the database file path.

## Indexer (`indexer`)

- `ISSUE_INDEXER_PATH`: **indexers/issues.bleve**: Index file used for issue search.
- `REPO_INDEXER_ENABLED`: **false**: Enables code search (uses a lot of disk space).
- `REPO_INDEXER_PATH`: **indexers/repos.bleve**: Index file used for code search.
- `UPDATE_BUFFER_LEN`: **20**: Buffer length of index request.
- `MAX_FILE_SIZE`: **1048576**: Maximum size in bytes of each index files.

## Security (`security`)

- `INSTALL_LOCK`: **false**: Disable to allow accessing the install page.

+ 1
- 1
models/models.go View File

@@ -164,7 +164,7 @@ func LoadConfigs() {
setting.Indexer.RepoPath = path.Join(setting.AppWorkPath, setting.Indexer.RepoPath)
}
setting.Indexer.UpdateQueueLength = sec.Key("UPDATE_BUFFER_LEN").MustInt(20)
setting.Indexer.MaxIndexerFileSize = sec.Key("MAX_FILE_SIZE").MustInt64(512 * 1024 * 1024)
setting.Indexer.MaxIndexerFileSize = sec.Key("MAX_FILE_SIZE").MustInt64(1024 * 1024)
}

// parsePostgreSQLHostPort parses given input in various forms defined in

Loading…
Cancel
Save