mirror of
https://github.com/YunoHost-Apps/peertube_ynh.git
synced 2024-09-03 19:56:29 +02:00
Merge pull request #265 from fflorent/change_max_body_size
Increase max upload size in nginx
This commit is contained in:
commit
be93794674
1 changed files with 2 additions and 2 deletions
|
@ -43,8 +43,8 @@ location = /api/v1/videos/upload {
|
||||||
# Note that temporary space is needed equal to the total size of all concurrent uploads.
|
# Note that temporary space is needed equal to the total size of all concurrent uploads.
|
||||||
# This data gets stored in /var/lib/nginx by default, so you may want to put this directory
|
# This data gets stored in /var/lib/nginx by default, so you may want to put this directory
|
||||||
# on a dedicated filesystem.
|
# on a dedicated filesystem.
|
||||||
client_max_body_size 12G; # default is 1M
|
client_max_body_size 24G; # default is 1M
|
||||||
more_set_headers "X-File-Maximum-Size : 8G always"; # inform backend of the set value in bytes before mime-encoding (x * 1.4 >= client_max_body_size)
|
more_set_headers "X-File-Maximum-Size : 16G always"; # inform backend of the set value in bytes before mime-encoding (x * 1.4 >= client_max_body_size)
|
||||||
|
|
||||||
try_files /dev/null @api;
|
try_files /dev/null @api;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue