From 38534157456c618ce5b77cdcfb080330d26a9d0f Mon Sep 17 00:00:00 2001
From: Travis Ralston <travpc@gmail.com>
Date: Sun, 7 Jan 2018 20:33:15 -0700
Subject: [PATCH] Increase default size limits to 100mb

---
 config.sample.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/config.sample.yaml b/config.sample.yaml
index 308c3985..112bf172 100644
--- a/config.sample.yaml
+++ b/config.sample.yaml
@@ -21,7 +21,7 @@ database:
 
 # The file upload settings for the media repository
 uploads:
-  maxBytes: 10485760 # 10MB default, 0 to disable
+  maxBytes: 104857600 # 100MB default, 0 to disable
   # This is intended for larger deployments where media should be distributed among other
   # directories, drives, servers, etc. For smaller deployments, a single entry in this list
   # is recommended.
@@ -30,7 +30,7 @@ uploads:
 
 # The file download settings when retrieving media from other servers
 downloads:
-  maxBytes: 10485760 # 10MB default, 0 to disable
+  maxBytes: 104857600 # 100MB default, 0 to disable
 
 # URL Preview settings
 urlPreviews:
-- 
GitLab