diff options
-rw-r--r-- | client/src/app/videos/+video-edit/video-add.component.ts | 10 | ||||
-rw-r--r-- | support/nginx/peertube | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/client/src/app/videos/+video-edit/video-add.component.ts b/client/src/app/videos/+video-edit/video-add.component.ts index 9fe121371..7c4b6260b 100644 --- a/client/src/app/videos/+video-edit/video-add.component.ts +++ b/client/src/app/videos/+video-edit/video-add.component.ts | |||
@@ -131,11 +131,11 @@ export class VideoAddComponent extends FormReactive implements OnInit, OnDestroy | |||
131 | const videofile = this.videofileInput.nativeElement.files[0] as File | 131 | const videofile = this.videofileInput.nativeElement.files[0] as File |
132 | if (!videofile) return | 132 | if (!videofile) return |
133 | 133 | ||
134 | // Cannot upload videos > 4GB for now | 134 | // Cannot upload videos > 8GB for now |
135 | // if (videofile.size > 4 * 1024 * 1024 * 1024) { | 135 | if (videofile.size > 8 * 1024 * 1024 * 1024) { |
136 | // this.notificationsService.error(this.i18n('Error'), this.i18n('We are sorry but PeerTube cannot handle videos > 4GB')) | 136 | this.notificationsService.error(this.i18n('Error'), this.i18n('We are sorry but PeerTube cannot handle videos > 8GB')) |
137 | // return | 137 | return |
138 | // } | 138 | } |
139 | 139 | ||
140 | const videoQuota = this.authService.getUser().videoQuota | 140 | const videoQuota = this.authService.getUser().videoQuota |
141 | if (videoQuota !== -1 && (this.userVideoQuotaUsed + videofile.size) > videoQuota) { | 141 | if (videoQuota !== -1 && (this.userVideoQuotaUsed + videofile.size) > videoQuota) { |
diff --git a/support/nginx/peertube b/support/nginx/peertube index e94eac5e8..0e77f6ae4 100644 --- a/support/nginx/peertube +++ b/support/nginx/peertube | |||
@@ -41,7 +41,7 @@ server { | |||
41 | add_header X-Content-Type-Options nosniff; | 41 | add_header X-Content-Type-Options nosniff; |
42 | add_header X-XSS-Protection "1; mode=block"; | 42 | add_header X-XSS-Protection "1; mode=block"; |
43 | add_header X-Robots-Tag none; | 43 | add_header X-Robots-Tag none; |
44 | 44 | ||
45 | access_log /var/log/nginx/peertube.example.com.access.log; | 45 | access_log /var/log/nginx/peertube.example.com.access.log; |
46 | error_log /var/log/nginx/peertube.example.com.error.log; | 46 | error_log /var/log/nginx/peertube.example.com.error.log; |
47 | 47 | ||
@@ -68,8 +68,8 @@ server { | |||
68 | proxy_set_header Host $host; | 68 | proxy_set_header Host $host; |
69 | proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | 69 | proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
70 | 70 | ||
71 | # Hard limit, PeerTube does not support videos > 4GB | 71 | # Hard limit, PeerTube does not support videos > 8GB |
72 | client_max_body_size 4G; | 72 | client_max_body_size 8G; |
73 | proxy_connect_timeout 600; | 73 | proxy_connect_timeout 600; |
74 | proxy_send_timeout 600; | 74 | proxy_send_timeout 600; |
75 | proxy_read_timeout 600; | 75 | proxy_read_timeout 600; |