From 4baf254039cbe31085ae1e0ed6cc804edb987c23 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Wed, 17 Apr 2019 19:35:46 -0600 Subject: [PATCH] Update pixelfed config --- config/pixelfed.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config/pixelfed.php b/config/pixelfed.php index c72004624..b45770827 100644 --- a/config/pixelfed.php +++ b/config/pixelfed.php @@ -46,7 +46,7 @@ return [ | default memory_limit php.ini is used for the rest of the app. | */ - 'memory_limit' => '1024M', + 'memory_limit' => env('MEMORY_LIMIT', '1024M'), /* |-------------------------------------------------------------------------- @@ -259,7 +259,9 @@ return [ 'media_types' => env('MEDIA_TYPES', 'image/jpeg,image/png,image/gif'), + 'enforce_account_limit' => env('LIMIT_ACCOUNT_SIZE', true), + 'ap_inbox' => env('ACTIVITYPUB_INBOX', false), 'ap_shared' => env('ACTIVITYPUB_SHAREDINBOX', false), 'ap_delivery_timeout' => env('ACTIVITYPUB_DELIVERY_TIMEOUT', 2.0), @@ -267,7 +269,7 @@ return [ 'import' => [ 'instagram' => [ - 'enabled' => env('IMPORT_INSTAGRAM_ENABLED', false), + 'enabled' => false, 'limits' => [ 'posts' => (int) env('IMPORT_INSTAGRAM_POST_LIMIT', 100), 'size' => (int) env('IMPORT_INSTAGRAM_SIZE_LIMIT', 250)