名称:ghost-oss-store
环境:Node.js
作者:MT-Libraries(小组)
Github:https://github.com/MT-Libraries/ghost-oss-store
简介
如其名,该插件为 Node.js 环境下知名博客程序 Ghost 自定义存储插件,为阿里云
对象存储
OSS 适配制作的数据存储插件。
该Ghost自定义存储模块允许您将媒体文件与Aliyun OSS存储在一起,而不是存储在本地机器上。
支持的Ghost版本
1.X
0.X
安装
npm install ghost-oss-store
mkdir content/storage
cp -vR node_modules/ghost-oss-store content/storage/oss-store
cd [path/to/ghost]/content/storage
mkdir oss-store && cd oss-store
git clone https://github.com/MT-Libraries/ghost-oss-store ./
npm install
storage: {
active: 'oss-store',
'oss_store': {
accessKeyId: 'accessKeyId',
accessKeySecret: 'accessKeySecret',
bucket: 'bucket',
region: 'oss-cn-hangzhou',
origin: 'https://www.thonatos.com/', // if you have bind custom domain to oss bucket. or false
fileKey: {
safeString: true, // use Ghost safaString util to rename filename, e.g. Chinese to Pinyin
prefix: 'ghost/', // { String } will be formated by moment.js, using `[]` to escape,
suffix: '' // { String } string added before file extname.
}
}
}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。