基于 Ubuntu 16.04
、NodeJs: v6.x
、Nginx 1.10.x
构建,一键自动安装最新版的 Hexo
,使用Nginx作为web服务器,支持Git自动发布。
- 首先在Github或者GitLab上编辑文章(或者本地
git push
) - 然后会触发
webhook
,自动将git上的md文件拉取到/opt/hexo/source/_posts
文件夹 - 接着自动执行
hexo g
操作,生成静态文件。 - 最后通过网址访问,结束。
关于Docker 更多信息,请访问其官网。https://docs.docker.com
debian
apt-get update && \
apt-get -y install curl && \
curl -fsSL https://get.daocloud.io/docker | sh \
update-rc.d -f docker defaults && \
service docker start
CentOS
yum update && \
curl -fsSL https://get.docker.com/ | sh && \
systemctl enable docker.service && \
systemctl start docker.service
IP_OR_DOMAIN
服务器IP或者域名GITHUB
github自动发布地址(Gitlab 请使用-e GITLAB=http://xxx
)WEBHOOK_SECRET
github webhook 密钥 (GitLab 不支持该选项)APT_MIRRORS
使用国内软件源
国内主机可将
idiswy/hexo:latest
换成daocloud.io/wangyan/hexo:latest
国内主机可用-e APT_MIRRORS=aliyun
选项,使用国内的镜像源。
docker run --name hexo \
-v /opt/hexo:/opt/hexo \
-p 80:80 \
-e IP_OR_DOMAIN=wangyan.org \
-e GITHUB=https://github.com/wangyan/test.git \
-e WEBHOOK_SECRET=123456 \
-e APT_MIRRORS=aliyun \
-d idiswy/hexo:latest
安装可能需要30秒左右,通过下面方法查看安装进度。
docker logs -f hexo //查看安装进度
注意将
youdomain
替换成你的网站域名,secret密钥可以随便设置
npm install hexo -g #全局安装hexo
npm update hexo -g #升级hexo
hexo init #初始化,新建一个网站
了解更多:https://hexo.io/zh-cn/docs/index.html
hexo server # 启动web服务器(默认端口4000,'ctrl + c'关闭)
hexo server -s #静态模式
hexo server -p 5000 #启动时,自定义端口
hexo server -i 192.168.1.1 #启动时,自定义 IP
了解更多:https://hexo.io/zh-cn/docs/server.html
hexo new [layout] <title> #新建
# layout对应三种布局:post、page、draft,默认为post
hexo new "postName" #新建文章
hexo new page "pageName" #新建页面
hexo new draft "draftName" #新建草稿
---
title: 文章标题
layout: post (可选)
date: 2016-01-01 00:00
comments: true(可选)
categories: 学习笔记(可选)
tag: 标签(可选)
- tag1
- tag2
keywords: 关键词(可选)
description:描述(可选)
---
####设置文章摘要
以上是文章摘要 <!--more--> 以下是余下全文
hexo generate #生成静态页面至public目录
hexo generate --watch #生成静态页面,同时监视文件变动
了解更多:https://hexo.io/zh-cn/docs/writing.html
hexo deploy #部署到远程服务器
hexo generate --deploy #生成静态页面后自动部署
了解更多:https://hexo.io/zh-cn/docs/deployment.html
hexo n "hello world" == hexo new "hello" #新建文章hello world
hexo p == hexo publish #将草稿发布为这正式文章
hexo g == hexo generate #生成静态文件
hexo s == hexo server #启动服务器
hexo d == hexo deploy #部署
了解更多Hexo命令:https://hexo.io/zh-cn/docs/commands.html
关于Hexo
更多信息,请访问其官网。https://hexo.io
更多使用帮助请阅读wiki
,其他问题欢迎在issues
中反馈。