This repository was archived by the owner on Aug 22, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +44
-1
lines changed Expand file tree Collapse file tree 1 file changed +44
-1
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,53 @@ $ composer require "overtrue/laravel-ueditor:~1.0"
49
49
50
50
# 说明
51
51
52
- 上传路径在:`public/uploads/` 下,确认该目录存在并可写。
52
+ 在 `config/ueditor.php` 配置 `disk` 为 `'local'` 情况下, 上传路径在:`public/uploads/` 下,确认该目录存在并可写。
53
53
54
54
如果要修改上传路径,请在 `config/ueditor.php` 里各种类型的上传路径,但是都在 public 下。
55
55
56
+ # 七牛支持
57
+
58
+ 如果你想使用七牛云储存,需要进行下面几个简单的操作:
59
+
60
+ 1. 配置 `config/ueditor.php` 的 `disk` 为 `qiniu`:
61
+
62
+ ```php
63
+ 'disk' => 'qiniu'
64
+ ```
65
+
66
+ 2 . 在 ` config/filesystems.php ` 添加下面的配置:
67
+
68
+ ``` php
69
+ 's3' => [
70
+ 'driver' => 's3',
71
+ 'key' => env('AWS_KEY'),
72
+ 'secret' => env('AWS_SECRET'),
73
+ 'region' => env('AWS_REGION'),
74
+ 'bucket' => env('AWS_BUCKET'),
75
+ ],
76
+
77
+ // 下面是添加的配置
78
+
79
+ 'qiniu' => [
80
+ 'protocol' => 'http', // 域名对于的协议 http 或 https,默认 http
81
+ 'bucket' => env('QINIU_BUCKET_NAME'), // 七牛存储空间名字(bucket name),推荐使用公开空间
82
+ 'domain' => env('QINIU_BUCKET_DOMAIN'), // 七牛分配的域名
83
+ 'key' => env('QINIU_ACCESS_KEY'),
84
+ 'secret' => env('QINIU_SECRET_KEY'),
85
+ ],
86
+ ```
87
+
88
+ 3 . 在 ` .env ` 文件添加配置:
89
+
90
+ ``` php
91
+ QINIU_BUCKET_NAME=
92
+ QINIU_BUCKET_DOMAIN=
93
+ QINIU_ACCESS_KEY=
94
+ QINIU_SECRET_KEY=
95
+ ```
96
+ > 七牛的 ` access_key ` 和 ` secret_Key ` 可以在这里找到:https://portal.qiniu.com/user/key ,在创建 ` bucket `
97
+ (空间)的时候,推荐大家都使用公开的空间。
98
+
56
99
# License
57
100
58
101
MIT
You can’t perform that action at this time.
0 commit comments