From a9cdeb220b489152953ac36e1d1b10155565a731 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Tue, 18 Aug 2026 14:54:22 +0200 Subject: [PATCH] Fix the suffix_storage_path comment in the config Disabling the config doesn't break local disk tenancy -- it only affects the storage_path() helper. Disks, cache and sessions are scoped either way, so the tradeoff is that files accessed using storage_path() are shared by all tenants. --- assets/config.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/assets/config.php b/assets/config.php index b2001091..33d2e109 100644 --- a/assets/config.php +++ b/assets/config.php @@ -378,7 +378,9 @@ return [ /** * Should storage_path() be suffixed. * - * Note: Disabling this will likely break local disk tenancy. Only disable this if you're using an external file storage service like S3. + * Note: This only affects the storage_path() helper. Disks, cache and sessions are + * scoped to the tenant's storage directory either way. With this disabled, files + * accessed using storage_path() are shared by all tenants. * * For the vast majority of applications, this feature should be enabled. But in some * edge cases, it can cause issues (like using Passport with Vapor - see #196), so