1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/peertube_ynh.git synced 2024-09-03 19:56:29 +02:00

Merge pull request #261 from YunoHost-Apps/ovh_fix_testing

Ovh fix testing
This commit is contained in:
yalh76 2021-07-30 21:01:30 +02:00 committed by GitHub
commit 69a4711a3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View file

@ -23,7 +23,7 @@ location = /api/v1/videos/upload-resumable {
client_max_body_size 0; client_max_body_size 0;
proxy_request_buffering off; proxy_request_buffering off;
try_files /dev/null @api; try_files /dev/null @api;
} }
location / { location / {
if ($scheme = http) { if ($scheme = http) {
@ -50,8 +50,8 @@ location = /api/v1/videos/upload {
} }
location ~ ^/api/v1/(videos|video-playlists|video-channels|users/me) { location ~ ^/api/v1/(videos|video-playlists|video-channels|users/me) {
client_max_body_size 3M; # default is 1M client_max_body_size 6M; # default is 1M
more_set_headers "X-File-Maximum-Size : 2M 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 : 4M 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;
} }

View file

@ -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~ynh1", "version": "3.3.0~ynh2",
"url": "https://github.com/Chocobozzz/PeerTube", "url": "https://github.com/Chocobozzz/PeerTube",
"upstream": { "upstream": {
"license": "AGPL-3.0-only", "license": "AGPL-3.0-only",