Laravel 8 FTP 驱动配置
Laravel 的文件系统集成能很好的适配 FTP,不过 FTP 的配置示例并没有被包含在框架默认的 filesystems.php
文件中。如果你需要配置 FTP 文件系统,则需要使用如下配置内容:
'ftp' => [
'driver' => 'ftp',
'host' => 'ftp.example.com',
'username' => 'your-username',
'password' => 'your-password',
// Optional FTP Settings...
// 'port' => 21,
// 'root' => '',
// 'passive' => true,
// 'ssl' => true,
// 'timeout' => 30,
],