hexo倒腾系列
原由
近几天将hexo的next主题倒腾差不多了,开始尝试着写博客了,听说用hexo-admin插件编辑文章还是挺方便的
安装
进入hexo源文件目录,执行命令:
npm install –save hexo-admin
配置
编辑根目录下:_config.yml文件,添加:1
2
3
4admin:
username: myfavoritename
password_hash: be121740bf988b2225a313fa1f107ca1
secret: a secret something
其中:
username为登录的用户名,password_hash为密码的bcrypt哈希值,secret用于使cookie安全,可以尽可能复杂。
生成password_hash方法
安装模块:sudo npm install bcrypt-nodejs
执行:1
2
3$ node
>const bcrypt = require('bcrypt-nodejs')
> bcrypt.hashSync('your_password')
#your_password为登录密码。