Skip to content

Commit 66eb725

Browse files
[12.x] Clarify and align storage drivers list (#10503)
* Clarify and align storage drivers list * Fix hyphenation of key-based * Update filesystem.md --------- Co-authored-by: Taylor Otwell <[email protected]>
1 parent 4b84243 commit 66eb725

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

filesystem.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Laravel provides a powerful filesystem abstraction thanks to the wonderful [Flys
3535

3636
Laravel's filesystem configuration file is located at `config/filesystems.php`. Within this file, you may configure all of your filesystem "disks". Each disk represents a particular storage driver and storage location. Example configurations for each supported driver are included in the configuration file so you can modify the configuration to reflect your storage preferences and credentials.
3737

38-
The `local` driver interacts with files stored locally on the server running the Laravel application while the `s3` driver is used to write to Amazon's S3 cloud storage service.
38+
The `local` driver interacts with files stored locally on the server running the Laravel application, while the `sftp` storage driver is used for SSH key-based FTP. The `s3` driver is used to write to Amazon's S3 cloud storage service.
3939

4040
> [!NOTE]
4141
> You may configure as many disks as you like and may even have multiple disks that use the same driver.
@@ -156,7 +156,7 @@ Laravel's Flysystem integrations work great with SFTP; however, a sample configu
156156
'username' => env('SFTP_USERNAME'),
157157
'password' => env('SFTP_PASSWORD'),
158158

159-
// Settings for SSH key based authentication with encryption password...
159+
// Settings for SSH key-based authentication with encryption password...
160160
'privateKey' => env('SFTP_PRIVATE_KEY'),
161161
'passphrase' => env('SFTP_PASSPHRASE'),
162162

0 commit comments

Comments
 (0)