Skip to content

Commit 0388035

Browse files
committed
doc: add default setting and README
1 parent d127b8e commit 0388035

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ There are some config settings you need to change in the files below.
232232
| `CMD_S3_SECRET_ACCESS_KEY` | no example | AWS secret key |
233233
| `CMD_S3_REGION` | `ap-northeast-1` | AWS S3 region |
234234
| `CMD_S3_BUCKET` | no example | AWS S3 bucket name |
235+
| `CMD_S3_ENDPOINT` | s3.example.com | custom AWS S3 endpoint |
235236
| `CMD_MINIO_ACCESS_KEY` | no example | Minio access key |
236237
| `CMD_MINIO_SECRET_KEY` | no example | Minio secret key |
237238
| `CMD_MINIO_ENDPOINT` | `minio.example.org` | Address of your Minio endpoint/instance |

lib/config/default.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ module.exports = {
6666
s3: {
6767
accessKeyId: undefined,
6868
secretAccessKey: undefined,
69-
region: undefined
69+
region: undefined,
70+
endpoint: undefined
7071
},
7172
minio: {
7273
accessKey: undefined,

0 commit comments

Comments
 (0)