From 6bee5072d0d5ec250c4654ce4c401e9e8f4c5fb9 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 5 Feb 2021 21:13:52 -0700 Subject: [PATCH] Update pixelfed config, add media_fast_process setting --- config/pixelfed.php | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/config/pixelfed.php b/config/pixelfed.php index 2637e8d15..c492cf2c1 100644 --- a/config/pixelfed.php +++ b/config/pixelfed.php @@ -263,5 +263,19 @@ return [ 'bouncer' => [ 'enabled' => env('PF_BOUNCER_ENABLED', false), - ] + ], + + /* + |-------------------------------------------------------------------------- + | Media Fast Process + |-------------------------------------------------------------------------- + | + | Don't require photos & video to finish optimization & + | upload to S3 if enabled before posting. If disabled + | users will have to wait until processed before posting, + | sacrificing the user experience to ensure media is federated + | using S3 urls (if enabled). Default: off + | + */ + 'media_fast_process' => env('PF_MEDIA_FAST_PROCESS', true), ];