laravel 中使用 sftp 驅動上傳相關配置

yangliang發表於2021-02-25

sftp 相關驅動配置

  • filesystems.php
    'sftp' => [
      'driver'   => 'sftp',
      'port' => 22,
      'host'     => '',
      'username' => '',
      'password' => '',
      'domain'=>'',
      'directoryPerm' => 0755,    // 目錄許可權
      'visibility' => 'public',   // set to public to use permPublic, or private to use permPrivate
      'permPublic' => 0755,       // 檔案許可權 (避免 0777 許可權 不安全)
    ],
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章