Browse Source

storage-node allow 10GB uploads

Mokhtar Naamani 3 years ago
parent
commit
250ea4849e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      storage-node/packages/storage/filter.js

+ 1 - 1
storage-node/packages/storage/filter.js

@@ -20,7 +20,7 @@
 
 const debug = require('debug')('joystream:storage:filter')
 
-const DEFAULT_MAX_FILE_SIZE = 2000 * 1024 * 1024
+const DEFAULT_MAX_FILE_SIZE = 10000 * 1024 * 1024
 const DEFAULT_ACCEPT_TYPES = ['video/*', 'audio/*', 'image/*']
 const DEFAULT_REJECT_TYPES = []