Hexo使用rsync部署
之前使用用git部署到github.io,但是github.io太慢了,只得上传到自己的云服务器。
配置
运行
1 | npm install hexo-deployer-git --save |
在自己的电脑上安装rsync(windows安装cwRsync,然后加进系统的PATH环境变量,执行cwrsync.cmd)将本机ssh密钥传到vps主机上,接着在vps上运行
1 | cat id_rsa.pub >> ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys |
在hexo根目录下的 _config.yml 中加入
1 | deploy: |
部署
1 | hexo d |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 云藉のBlog!
评论