From 55cd7d4d390bd77f2b598b96df3a9556118f28de Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Sun, 23 Aug 2020 15:55:26 -0700 Subject: [PATCH] Allow editing files up to 4MB --- config/pterodactyl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/pterodactyl.php b/config/pterodactyl.php index b37790cbc..671a64fd3 100644 --- a/config/pterodactyl.php +++ b/config/pterodactyl.php @@ -177,7 +177,7 @@ return [ | This array includes the MIME filetypes that can be edited via the web. */ 'files' => [ - 'max_edit_size' => env('PTERODACTYL_FILES_MAX_EDIT_SIZE', 1024 * 512), + 'max_edit_size' => env('PTERODACTYL_FILES_MAX_EDIT_SIZE', 1024 * 1024 * 4), 'editable' => [ 'application/json', 'application/javascript',