Laravel theorytheory 0/50 · 0%
Filesystem · medium

34. File Storage Drivers & Visibility

Local vs cloud storage configuration.

Filesystem disks are configured in config/filesystems.php, each with a driver (local, s3, etc.) and root path. Files can be stored with public or private visibility, controlling whether they're accessible via a direct URL. Temporary signed URLs (Storage::temporaryUrl()) let you grant time-limited access to private S3 files without exposing credentials.

Check your understanding

  1. 1. Which method generates a time-limited access URL for a private S3 file?

  2. 2. Where are filesystem disks configured?