summaryrefslogtreecommitdiffstats
path: root/custom
diff options
context:
space:
mode:
authorKN4CK3R <admin@oldschoolhack.me>2022-03-02 23:50:29 +0100
committerGitHub <noreply@github.com>2022-03-02 23:50:29 +0100
commitf3cbdee38e5111886a8ab0855be615ba180c45dc (patch)
treea33fa928fc66a1151db66346d026ec0e62dd4731 /custom
parentefd10f1ab4bd66ef8e583ff8f9d3d25f7f741a6a (diff)
downloadgitea-f3cbdee38e5111886a8ab0855be615ba180c45dc.tar.gz
gitea-f3cbdee38e5111886a8ab0855be615ba180c45dc.zip
Don't clean up hardcoded `tmp` (#18983)
* Don't clean up hardcoded `tmp`. * Fixed import.
Diffstat (limited to 'custom')
-rw-r--r--custom/conf/app.example.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini
index a48c41909e..42d1756715 100644
--- a/custom/conf/app.example.ini
+++ b/custom/conf/app.example.ini
@@ -890,7 +890,7 @@ PATH =
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
-;; Path for local repository copy. Defaults to `tmp/local-repo`
+;; Path for local repository copy. Defaults to `tmp/local-repo` (content gets deleted on gitea restart)
;LOCAL_COPY_PATH = tmp/local-repo
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -902,7 +902,7 @@ PATH =
;; Whether repository file uploads are enabled. Defaults to `true`
;ENABLED = true
;;
-;; Path for uploads. Defaults to `data/tmp/uploads` (tmp gets deleted on gitea restart)
+;; Path for uploads. Defaults to `data/tmp/uploads` (content gets deleted on gitea restart)
;TEMP_PATH = data/tmp/uploads
;;
;; Comma-separated list of allowed file extensions (`.zip`), mime types (`text/plain`) or wildcard type (`image/*`, `audio/*`, `video/*`). Empty value or `*/*` allows all types.