From c5d38d469a447d6831c3cf56d193be7941d6586f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 18 May 2021 17:01:26 -0500 Subject: [PATCH] update skeleton for filesystem tweaks to make sail usage easier --- .env.example | 2 ++ config/filesystems.php | 1 + 2 files changed, 3 insertions(+) diff --git a/.env.example b/.env.example index c3ed2a91b..44853cd59 100644 --- a/.env.example +++ b/.env.example @@ -16,6 +16,7 @@ DB_PASSWORD= BROADCAST_DRIVER=log CACHE_DRIVER=file +FILESYSTEM_DRIVER=local QUEUE_CONNECTION=sync SESSION_DRIVER=file SESSION_LIFETIME=120 @@ -39,6 +40,7 @@ AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= AWS_DEFAULT_REGION=us-east-1 AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false PUSHER_APP_ID= PUSHER_APP_KEY= diff --git a/config/filesystems.php b/config/filesystems.php index 10c9d9be2..760ef9728 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -50,6 +50,7 @@ return [ 'bucket' => env('AWS_BUCKET'), 'url' => env('AWS_URL'), 'endpoint' => env('AWS_ENDPOINT'), + 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), ], ],