好记性不如写博客,天道酬勤
端口占用查看: lsof -i | grep 4000 , kill -9
现在把默认主题更改成Next主题
git clone https://github.com/iissnan/hexo-theme-next themes/next
_config.yml配置文件,修改主题为next
theme: next
git clone https://github.com/tufu9441/maupassant-hexo.git themes/maupassant
npm install hexo-renderer-pug --save
npm install hexo-renderer-sass --save
安装RSS插件
npm install --save hexo-generator-feed
在博客工程文件根目录下_config.yml文件中添加如下内容
plugins:
hexo-generator-feed
#Feed Atom
feed:
type: atom
path: atom.xml
limit: 20
修改网站相关信息
title: 仰望星空 #网站title
subtitle: 程序猿的世界 #副标题,网站名下面
description: 技术博客 //网站描述,便于搜索引擎用关键词检索
author: HuLiMin
language: zh-CN
timezone: Asia/Shanghai
配置Nginx:
为了部署网站,修改/etc/nginx/conf.d/default.conf
server{
listen 80;
server_name www.githlm.com;
location / {
root /home/blog/test;
index index.html;
}
}
参考链接: