mirror of
https://github.com/go-gitea/gitea.git
synced 2025-12-14 21:15:18 +08:00
This PR uniform all temporary directory usage so that it will be easier to manage. Relate to #31792 - [x] Added a new setting to allow users to configure the global temporary directory. - [x] Move all temporary files and directories to be placed under os.Temp()/gitea. - [x] `setting.Repository.Local.LocalCopyPath` now will be `setting.TempPath/local-repo` and the customized path is removed. ```diff -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;[repository.local] -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; -;; Path for local repository copy. Defaults to TEMP_PATH + `local-repo`, this is deprecated and cannot be changed -;LOCAL_COPY_PATH = local-repo ``` - [x] `setting.Repository.Upload.TempPath` now will be `settting.TempPath/uploads` and the customized path is removed. ```diff ;[repository.upload] -;; -;; Path for uploads. Defaults to TEMP_PATH + `uploads` -;TEMP_PATH = uploads ``` - [x] `setting.Packages.ChunkedUploadPath` now will be `settting.TempPath/package-upload` and the customized path is removed. ```diff ;[packages] -;; -;; Path for chunked uploads. Defaults it's `package-upload` under `TEMP_PATH` unless it's an absolute path. -;CHUNKED_UPLOAD_PATH = package-upload ``` - [x] `setting.SSH.KeyTestPath` now will be `settting.TempPath/ssh_key_test` and the customized path is removed. ```diff [server] -;; -;; Directory to create temporary files in when testing public keys using ssh-keygen, -;; default is the system temporary directory. -;SSH_KEY_TEST_PATH = ``` TODO: - [ ] setting.PprofDataPath haven't been changed because it may need to be kept until somebody read it but temp path may be clean up any time. --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> |
||
|---|---|---|
| .. | ||
| config | ||
| actions_test.go | ||
| actions.go | ||
| admin.go | ||
| api.go | ||
| asset_dynamic.go | ||
| asset_static.go | ||
| attachment_test.go | ||
| attachment.go | ||
| cache.go | ||
| camo.go | ||
| config_env_test.go | ||
| config_env.go | ||
| config_provider_test.go | ||
| config_provider.go | ||
| config.go | ||
| cors.go | ||
| cron_test.go | ||
| cron.go | ||
| database_sqlite.go | ||
| database_test.go | ||
| database.go | ||
| federation.go | ||
| git_test.go | ||
| git.go | ||
| gloabl_lock.go | ||
| glob.go | ||
| global_lock_test.go | ||
| global.go | ||
| highlight.go | ||
| i18n.go | ||
| incoming_email.go | ||
| indexer_test.go | ||
| indexer.go | ||
| lfs_test.go | ||
| lfs.go | ||
| log_test.go | ||
| log.go | ||
| mailer_test.go | ||
| mailer.go | ||
| markup_test.go | ||
| markup.go | ||
| metrics.go | ||
| migrations.go | ||
| mime_type_map.go | ||
| mirror.go | ||
| oauth2_test.go | ||
| oauth2.go | ||
| other.go | ||
| packages_test.go | ||
| packages.go | ||
| path_test.go | ||
| path.go | ||
| picture.go | ||
| project.go | ||
| proxy.go | ||
| queue.go | ||
| repository_archive_test.go | ||
| repository_archive.go | ||
| repository.go | ||
| security.go | ||
| server.go | ||
| service_test.go | ||
| service.go | ||
| session.go | ||
| setting_test.go | ||
| setting.go | ||
| ssh.go | ||
| storage_test.go | ||
| storage.go | ||
| task.go | ||
| time.go | ||
| ui.go | ||
| webhook.go | ||