npm install hexo-cli -g
方式是采用软连接:
ln -s /usr/local/node-v12.13.1/lib/node_modules/hexo-cli/bin/hexo /usr/local/bin/hexo
mkdir hexo
hexo init
出现如下,表示已经初始化成功。
接着查看生成的目录:
hexo s
hexo博客是运行在4000的端口上,这个时候可以用服务器的IP:4000来访问。
server {
listen 80;
server_name hexo.xdr630.top;
index index.html index.htm;
root /usr/local/hexo/public
}
完成添加之后再使用重载命令,在nginx的sbin目录下执行:
./nginx -s reload
hexo g
生成文章目录,就是把 /usr/local/source/_posts 中的md文章转换成HTML语言放在public文件夹下。
保存退出。
hexo g
生成即可。也就不需要在服务器上创建文章再发表了。hexo g
hexo也有好多主题,还有一些评论插件什么的,也可以进行自定义设计的博客。