第一步:在composer.json 中的 require 添加
1
|
"jacobcyl/ali-oss-storage" : "^2.1" 然后在cmd里运行composer update
|
第二步:在config/app.php的providers下添加
1
|
Jacobcyl\AliOSS\AliOssServiceProvider:: class ,
|
第三步:在app/filesystems.php中的disks里下添加
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
'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>
],
...
]
|
第四步:在app/filesystems.php修改
1
|
'default' => 'oss' ,
|
以上这篇laravel框架 laravel-admin上传图片到oss的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/guyaofei/article/details/79918697