From 9db18df3297e8f1d70c4db1217507e2390e6fef4 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 17 Mar 2019 16:25:53 -0600 Subject: [PATCH] Update pixelfed config --- config/pixelfed.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/config/pixelfed.php b/config/pixelfed.php index 295ae058a..a5323a467 100644 --- a/config/pixelfed.php +++ b/config/pixelfed.php @@ -263,5 +263,15 @@ return [ 'ap_inbox' => env('ACTIVITYPUB_INBOX', false), 'ap_shared' => env('ACTIVITYPUB_SHAREDINBOX', false), 'ap_delivery_timeout' => env('ACTIVITYPUB_DELIVERY_TIMEOUT', 2.0), - 'ap_delivery_concurrency' => env('ACTIVITYPUB_DELIVERY_CONCURRENCY', 10) + 'ap_delivery_concurrency' => env('ACTIVITYPUB_DELIVERY_CONCURRENCY', 10), + + 'import' => [ + 'instagram' => [ + 'enabled' => env('IMPORT_INSTAGRAM_ENABLED', false), + 'limits' => [ + 'posts' => (int) env('IMPORT_INSTAGRAM_POST_LIMIT', 100), + 'size' => (int) env('IMPORT_INSTAGRAM_SIZE_LIMIT', 250) + ] + ] + ], ];