diff options
author | Jan Tojnar <jtojnar@gmail.com> | 2022-01-15 23:26:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-15 17:26:01 -0500 |
commit | a38ab71b20754619880d763040e3a24ebe11e4a4 (patch) | |
tree | 844ce88ca306a66e4c59a8a5d830e906236a83f1 /docs/content/doc/usage | |
parent | 0ed9b006e87c055f232f11ef5bdfff15075c36cd (diff) | |
download | gitea-a38ab71b20754619880d763040e3a24ebe11e4a4.tar.gz gitea-a38ab71b20754619880d763040e3a24ebe11e4a4.zip |
docs: mention client_max_body_size affects LFS (#18291)
Diffstat (limited to 'docs/content/doc/usage')
-rw-r--r-- | docs/content/doc/usage/reverse-proxies.en-us.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/content/doc/usage/reverse-proxies.en-us.md b/docs/content/doc/usage/reverse-proxies.en-us.md index c782f1ce5c..4567b09d22 100644 --- a/docs/content/doc/usage/reverse-proxies.en-us.md +++ b/docs/content/doc/usage/reverse-proxies.en-us.md @@ -128,6 +128,7 @@ This error indicates nginx is configured to restrict the file upload size. In your nginx config file containing your Gitea proxy directive, find the `location { ... }` block for Gitea and add the line `client_max_body_size 16M;` to set this limit to 16 megabytes or any other number of choice. +If you use Git LFS, this will also limit the size of the largest file you will be able to push. ## Apache HTTPD |