部署到服务器
-
npm install hexo-deployer-git --save
-
修改_config.yml配置
deploy: type: git repo: 仓库地址 repository branch: 分支 message: 提交信息
-
生成站点文件并推送至远程库。
hexo clean && hexo deploy
前者清除站点文件,后者重新生成站点文件并将之推送到指定的库分支。
配置nginx
-
打开nginx配置文件,新增一个server
server { listen 80; server_name www.wxy.email; 域名 charset utf-8; location / { root /home/blog; 服务器上的代码目录路径 index index.html; } }
-
重启nginx
service nginx reload
-
这样就OK了,简单到意外…
-
个人博客:时光不写博客