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
;; default storage for attachments, lfs and avatars
@@ -2684,6 +2685,14 @@ LEVEL = Info
2684
2685
;;
2685
2686
;; Default platform to get action plugins, `github` for `https://github.com`, `self` for the current Gitea instance.
2686
2687
;DEFAULT_ACTIONS_URL = github
2688
+
;; Logs retention time in days. Old logs will be deleted after this period.
2689
+
;LOG_RETENTION_DAYS = 365
2690
+
;; Log compression type, `none` for no compression, `zstd` for zstd compression.
2691
+
;; Other compression types like `gzip` are NOT supported, since seekable stream is required for log view.
2692
+
;; It's always recommended to use compression when using local disk as log storage if CPU or memory is not a bottleneck.
2693
+
;; 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.
2694
+
;; But it will save storage space and network bandwidth, so it's still recommended to use compression.
2695
+
;LOG_COMPRESSION = none
2687
2696
;; Default artifact retention time in days. Artifacts could have their own retention periods by setting the `retention-days` option in `actions/upload-artifact` step.
2688
2697
;ARTIFACT_RETENTION_DAYS = 90
2689
2698
;; Timeout to stop the task which have running status, but haven't been updated for a long time
0 commit comments