aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorGusted <williamzijl7@hotmail.com>2022-01-23 19:02:29 +0000
committerGitHub <noreply@github.com>2022-01-23 20:02:29 +0100
commit5e5740af69cb0f44ff0c1576a2387388d75bb4c2 (patch)
treefdfcbe4f67d1de3c5c567beb6e03a551954b2047 /docs
parent8472884cefc4a52d7e383648b3591392bd9b6e4c (diff)
downloadgitea-5e5740af69cb0f44ff0c1576a2387388d75bb4c2.tar.gz
gitea-5e5740af69cb0f44ff0c1576a2387388d75bb4c2.zip
Switch to non-deprecation setting (#18358)
* Switch to non-deprecation setting (Avoid by-default: "Deprecated fallback `[server]` `LFS_CONTENT_PATH` present. Use `[lfs]` `PATH` instead. This fallback will be removed in v1.18.0") * Update all references
Diffstat (limited to 'docs')
-rw-r--r--docs/content/doc/usage/git-lfs-support.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/content/doc/usage/git-lfs-support.md b/docs/content/doc/usage/git-lfs-support.md
index a8f935de2b..8b2c997bf9 100644
--- a/docs/content/doc/usage/git-lfs-support.md
+++ b/docs/content/doc/usage/git-lfs-support.md
@@ -21,8 +21,10 @@ To use Gitea's built-in LFS support, you must update the `app.ini` file:
[server]
; Enables git-lfs support. true or false, default is false.
LFS_START_SERVER = true
+
+[lfs]
; Where your lfs files reside, default is data/lfs.
-LFS_CONTENT_PATH = /home/gitea/data/lfs
+PATH = /home/gitea/data/lfs
```
**Note**: LFS server support needs at least Git v2.1.2 installed on the server