Laravel 使用阿里雲 oss 儲存物件

曉軒發表於2018-10-09

1、

    composer require jacobcyl/ali-oss-storage:dev-master

2、在config/app.php的providers下新增

    Jacobcyl\AliOSS\AliOssServiceProvider::class,

3、在app/filesystems.php中的disks裡下新增

    'disks'=>[
        ...
        'oss' => [
                'driver'        => 'oss',
                'access_id'     => '<Your Aliyun OSS AccessKeyId>',
                'access_key'    => '<Your Aliyun OSS AccessKeySecret>',
                'bucket'        => '<OSS bucket name>',
                'endpoint'      => '<the endpoint of OSS, E.g: oss-cn-hangzhou.aliyuncs.com | custom domain, E.g:img.abc.com>', // OSS 外網節點或自定義外部域名
                //'endpoint_internal' => '<internal endpoint [OSS內網節點] 如:oss-cn-shenzhen-internal.aliyuncs.com>', // v2.0.4 新增配置屬性,如果為空,則預設使用 endpoint 配置(由於內網上傳有點小問題未解決,請大家暫時不要使用內網節點上傳,正在與阿里技術溝通中)
                'cdnDomain'     => '<CDN domain, cdn域名>', // 如果isCName為true, getUrl會判斷cdnDomain是否設定來決定返回的url,如果cdnDomain未設定,則使用endpoint來生成url,否則使用cdn
                'ssl'           => <true|false> // true to use 'https://' and false to use 'http://'. default is false,
                'isCName'       => <true|false> // 是否使用自定義域名,true: 則Storage.url()會使用自定義的cdn或域名生成檔案url, false: 則使用外部節點生成url
                'debug'         => <true|false>
        ],
        ...
    ]

4、在app/filesystems.php修改

    'default' => 'oss',

部落格地址:http://james.dmzfa.com/

本作品採用《CC 協議》,轉載必須註明作者和本文連結

不要輕易放棄。學習成長的路上,我們長路漫漫,只因學無止境

Don't give up easily. On the way of learning and growing up, we have a long way to go, just because there is no end to learning.

相關文章