From 3fd2fd3732ad0881007a1d941ab77dc00a11d513 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Mon, 24 Feb 2025 15:54:24 +0800 Subject: [PATCH] [11.x] Sync skeleton configuration * https://github.com/laravel/laravel/pull/6450 * https://github.com/laravel/laravel/pull/6536 Signed-off-by: Mior Muhammad Zaki --- config-stubs/app.php | 2 +- config/app.php | 2 +- config/filesystems.php | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config-stubs/app.php b/config-stubs/app.php index f46726731e4a..324b513a2733 100644 --- a/config-stubs/app.php +++ b/config-stubs/app.php @@ -65,7 +65,7 @@ | */ - 'timezone' => env('APP_TIMEZONE', 'UTC'), + 'timezone' => 'UTC', /* |-------------------------------------------------------------------------- diff --git a/config/app.php b/config/app.php index d4e3180fa6fc..16073173f8f8 100644 --- a/config/app.php +++ b/config/app.php @@ -72,7 +72,7 @@ | */ - 'timezone' => env('APP_TIMEZONE', 'UTC'), + 'timezone' => 'UTC', /* |-------------------------------------------------------------------------- diff --git a/config/filesystems.php b/config/filesystems.php index c9bd1d09468f..3d671bd9105e 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -32,7 +32,8 @@ 'local' => [ 'driver' => 'local', - 'root' => storage_path('app'), + 'root' => storage_path('app/private'), + 'serve' => true, 'throw' => false, 'report' => false, ],