]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Increase upload limit to 8GB (test)
authorChocobozzz <me@florianbigard.com>
Fri, 29 Jun 2018 13:47:15 +0000 (15:47 +0200)
committerChocobozzz <me@florianbigard.com>
Fri, 29 Jun 2018 15:10:53 +0000 (17:10 +0200)
client/src/app/videos/+video-edit/video-add.component.ts
support/nginx/peertube

index 9fe1213719fcb889811be44644485285098117ad..7c4b6260ba2dfa7b5df0e16bd0ff937c4ce3fd5b 100644 (file)
@@ -131,11 +131,11 @@ export class VideoAddComponent extends FormReactive implements OnInit, OnDestroy
     const videofile = this.videofileInput.nativeElement.files[0] as File
     if (!videofile) return
 
-    // Cannot upload videos > 4GB for now
-    // if (videofile.size > 4 * 1024 * 1024 * 1024) {
-    //   this.notificationsService.error(this.i18n('Error'), this.i18n('We are sorry but PeerTube cannot handle videos > 4GB'))
-    //   return
-    // }
+    // Cannot upload videos > 8GB for now
+    if (videofile.size > 8 * 1024 * 1024 * 1024) {
+      this.notificationsService.error(this.i18n('Error'), this.i18n('We are sorry but PeerTube cannot handle videos > 8GB'))
+      return
+    }
 
     const videoQuota = this.authService.getUser().videoQuota
     if (videoQuota !== -1 && (this.userVideoQuotaUsed + videofile.size) > videoQuota) {
index e94eac5e84e220c01897e0219dcfbfe342e52bb6..0e77f6ae4ba8c774a8f4aaa43cd139ae346d602f 100644 (file)
@@ -41,7 +41,7 @@ server {
   add_header X-Content-Type-Options nosniff;
   add_header X-XSS-Protection "1; mode=block";
   add_header X-Robots-Tag none;
-  
+
   access_log /var/log/nginx/peertube.example.com.access.log;
   error_log /var/log/nginx/peertube.example.com.error.log;
 
@@ -68,8 +68,8 @@ server {
     proxy_set_header Host $host;
     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
 
-    # Hard limit, PeerTube does not support videos > 4GB
-    client_max_body_size 4G;
+    # Hard limit, PeerTube does not support videos > 8GB
+    client_max_body_size 8G;
     proxy_connect_timeout       600;
     proxy_send_timeout          600;
     proxy_read_timeout          600;