Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
Moon FM 同步服务搭建
安装 CouchDB使用docker进行安装
docker run -e COUCHDB_USER=账号 -e COUCHDB_PASSWORD=密码 -d --name couchdb -p 127.0.0.1:5984:5984 --restart=always couchdb:2.3.1
版本需要选定2.3.1,这个版本包含了 couch_peruser 配置项,更高的版本我没有找到,可能是有的。
配置 CouchDB首先使用浏览器登录管理界面,地址为:https://[url]/_utils/。
使用 admin 用户登录,进入设置界面,将 couch_peruser 的 enable 项目调整为 true 。
创建_users 数据库
curl -X PUT <http://admin>:[admin 密码]@[url]/_users \\ -H "Accept: application/json" \\ -H "Content-Type: application/json& ...