mirror of
https://github.com/YunoHost-Apps/peertube_ynh.git
synced 2024-09-03 19:56:29 +02:00
Merge pull request #266 from YunoHost-Apps/testing
Increase max upload size in nginx
This commit is contained in:
commit
509ba9051f
3 changed files with 7 additions and 3 deletions
|
@ -18,6 +18,8 @@
|
||||||
upgrade=1 from_commit=08bf3fce3ad99e27e7f7d251838a9f9c63243e44
|
upgrade=1 from_commit=08bf3fce3ad99e27e7f7d251838a9f9c63243e44
|
||||||
# 3.3.0~ynh2
|
# 3.3.0~ynh2
|
||||||
upgrade=1 from_commit=f3bb02002c8fa28748744302475139b6fcf7c651
|
upgrade=1 from_commit=f3bb02002c8fa28748744302475139b6fcf7c651
|
||||||
|
# 3.3.0~ynh3
|
||||||
|
upgrade=1 from_commit=ed59a268e93910f8b35b0f87399f91b8cad9ede0
|
||||||
backup_restore=1
|
backup_restore=1
|
||||||
multi_instance=0
|
multi_instance=0
|
||||||
port_already_use=0
|
port_already_use=0
|
||||||
|
@ -32,3 +34,5 @@ Notification=yes
|
||||||
name=3.2.1~ynh4
|
name=3.2.1~ynh4
|
||||||
; commit=f3bb02002c8fa28748744302475139b6fcf7c651
|
; commit=f3bb02002c8fa28748744302475139b6fcf7c651
|
||||||
name=3.3.0~ynh2
|
name=3.3.0~ynh2
|
||||||
|
; commit=ed59a268e93910f8b35b0f87399f91b8cad9ede0
|
||||||
|
name=3.3.0~ynh3
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"en": "Video streaming platform using P2P directly in the web browser, connected to a federated network",
|
"en": "Video streaming platform using P2P directly in the web browser, connected to a federated network",
|
||||||
"fr": "Plateforme de diffusion vidéo par P2P directement dans le navigateur, et connectée à un réseau fédéralisé"
|
"fr": "Plateforme de diffusion vidéo par P2P directement dans le navigateur, et connectée à un réseau fédéralisé"
|
||||||
},
|
},
|
||||||
"version": "3.3.0~ynh3",
|
"version": "3.3.0~ynh4",
|
||||||
"url": "https://github.com/Chocobozzz/PeerTube",
|
"url": "https://github.com/Chocobozzz/PeerTube",
|
||||||
"upstream": {
|
"upstream": {
|
||||||
"license": "AGPL-3.0-only",
|
"license": "AGPL-3.0-only",
|
||||||
|
|
Loading…
Add table
Reference in a new issue