From 054de0652296f36260df3ee3ef10b6fcbb6eeb6c Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 25 Jul 2018 07:29:23 -0700 Subject: [PATCH] Added cache variables to S3 --- config/filesystems.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/filesystems.php b/config/filesystems.php index 2a14afa7b9..683a6715b4 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -85,6 +85,12 @@ return [ 'secret' => env('AWS_SECRET', null), 'region' => env('AWS_REGION', null), 'bucket' => env('AWS_BUCKET', null), + + 'cache' => [ + 'store' => env('AWS_CACHE_STORE', 'memcached'), + 'expire' => env('AWS_CACHE_EXPIRES', 600), + 'prefix' => env('AWS_CACHE_PREFIX', 'cache-prefix'), + ], ],