diff options
author | Jason Song <i@wolfogre.com> | 2024-08-10 00:07:35 +0200 |
---|---|---|
committer | Earl Warren <contact@earl-warren.org> | 2024-08-13 09:05:50 +0200 |
commit | c2310c1d6c9653e4f488df509c2c06272364edfb (patch) | |
tree | 6ad5da11f8f53542a262c0da5d68c79e9d15d706 /custom/conf | |
parent | Fix `IsObjectExist` with gogit (#31790) (tests only) (diff) | |
download | forgejo-c2310c1d6c9653e4f488df509c2c06272364edfb.tar.xz forgejo-c2310c1d6c9653e4f488df509c2c06272364edfb.zip |
Fix typo for `LOG_COMPRESSION` in ini (#31809)
Follow #31761
---------
Co-authored-by: silverwind <me@silverwind.io>
(cherry picked from commit 42841aab59640262ed3b873d86980b0bb5d869ae)
Diffstat (limited to 'custom/conf')
-rw-r--r-- | custom/conf/app.example.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index 2e6228c3cf..e414ee8ab0 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -2713,7 +2713,7 @@ LEVEL = Info ;; Logs retention time in days. Old logs will be deleted after this period. ;LOG_RETENTION_DAYS = 365 ;; Log compression type, `none` for no compression, `zstd` for zstd compression. -;; Other compression types like `gzip` if NOT supported, since seekable stream is required for log view. +;; Other compression types like `gzip` are NOT supported, since seekable stream is required for log view. ;; It's always recommended to use compression when using local disk as log storage if CPU or memory is not a bottleneck. ;; And for object storage services like S3, which is billed for requests, it would cause extra 2 times of get requests for each log view. ;; But it will save storage space and network bandwidth, so it's still recommended to use compression. |