UNPKG
eggplugins-s3
Version:
latest (1.0.1)
1.0.1
AWS S3 plugin for Egg
github.com/JinBing91/eggplugin-s3
eggplugins-s3
/
config
/
config.default.js
21 lines
(19 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
'use strict'
;
/** * egg-s3 default config *
@member
Config#s3 */
exports
.
s3
= {
app
:
true
,
agent
:
false
,
// Single client
client
: {
credentials
: {
accessKeyId
:
''
,
secretAccessKey
:
''
, },
region
:
''
,
bucket
:
''
,
prefix
:
''
, }, };