小編給大家分享一下基于Node.js搭建hexo博客的示例,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
創(chuàng)新互聯(lián)建站專注于企業(yè)成都全網(wǎng)營(yíng)銷推廣、網(wǎng)站重做改版、通榆網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5響應(yīng)式網(wǎng)站、商城開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為通榆等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
一、安裝新版本的nodejs和npm
安裝n模塊:
npm install -g n
升級(jí)node.js到最新穩(wěn)定版
n stable
二、安裝hexo
note: 參考github,不要去其官網(wǎng)
安裝Hexo
npm install hexo-cli -g
Setup your blog
hexo init blemesh cd blemesh
安裝Cactus主題,眾多開源主題中比較簡(jiǎn)潔的一個(gè):
主題頁(yè)
Cactus頁(yè)
git clone https://github.com/probberechts/hexo-theme-cactus.git themes/cactus
修改主題配置:
vim _config.yml
# Extensions ## Plugins: https://hexo.io/plugins/ ## Themes: https://hexo.io/themes/ ## theme: landscape theme: cactus theme_config: colorscheme: white
Create pages and articles with the hexo new [layout]
hexo new page about
This will create a new file in source/about/index.md Similary, you can create a new article with
hexo new post "hello world"
and add some interesting content in source/_posts/hello-world.md.
Start the server:
hexo server
8001 port:
hexo server -p 8001
三、安裝hexo-admin并配置
安裝:
npm install --save hexo-admin
打開目錄下的_config.yml配置hexo-admin:
admin:
username: XXXX(自己設(shè)置用戶名) password_hash: XXXXXXXXX(密碼,但是是明文經(jīng)過(guò)bcrypt hash加密后生成的) secret: hey hexo(用于cookie安全) deployCommand: './admin_script/hexo-generate.sh'(調(diào)用該腳本)
注:
1)其中password_hash是你自己的明文密碼經(jīng)過(guò)加密后的字符串,但是如果用類似下面的網(wǎng)址: https://bcrypt-generator.com/ 會(huì)生成:$2y$10$pJjIxxxxxfMn9U/xxxxxNuuA20kh2eoB7vZxxxxx/7WpeV7IOxxxx類似的加密串,但是運(yùn)行會(huì)報(bào)invalid salt revision錯(cuò)誤,其原因是:
? blemesh cat node_modules/hexo-admin/www/bundle.js | head -4851 | tail -10 if (salt.charAt(0) != '$' || salt.charAt(1) != '2') throw "Invalid salt version"; if (salt.charAt(2) == '$') off = 3; else { minor = salt.charAt(2); if (minor != 'a' || salt.charAt(3) != '$') throw "Invalid salt revision"; off = 4; }
需要版本號(hào)是2a的加密方式,因此只能用python自己寫了:
https://pypi.org/project/bcrypt/3.1.0/
>>> hashed = bcrypt.hashpw(password, bcrypt.gensalt(prefix=b"2a")) >>> print(hashed) b'$2a$12$PAoJr3USOBxxxxxxxxxxxxxxV/.h.QNbh/6q.xxxxxxxxxxxxxxxxcDcJ.'
2)其中配置中有個(gè)腳本: ./admin_script/hexo-generate.sh 需要自己創(chuàng)建:
? blemesh cat admin_script/hexo-generate.sh hexo g ? blemesh chmod +x admin_script/hexo-generate.sh
這個(gè)腳本有什么用,啥時(shí)候觸發(fā)?可以參考: https://www.jianshu.com/p/68e727dda16d step 5,admin后臺(tái)管理博客有個(gè)deploy按鈕,點(diǎn)擊這個(gè)按鈕就會(huì)執(zhí)行這個(gè)腳本,該腳本會(huì)將md文件生成靜態(tài)網(wǎng)頁(yè),如果用nginx配置去訪問(wèn)靜態(tài)網(wǎng)頁(yè),速度會(huì)快很多。
四、nginx配置
配置nginx:編輯 /etc/nginx/nginx.conf 插入下面代碼:
server { listen 3001; server_name www.beautifulzzzz.com; index index.html index.htm index; root /root/App/blemesh/public; }
之后重啟nginx:nginx -s reload
注:
執(zhí)行nginx后會(huì)報(bào)錯(cuò)誤:nginx 403 Forbidden,原因是配置文件nginx.conf文件的執(zhí)行用戶和當(dāng)前用戶不一致導(dǎo)致的,把之前的nobody改成當(dāng)前用戶root。
五、增加tag
hexo主頁(yè)下的tag標(biāo)簽、category標(biāo)簽無(wú)顯示找不到:
解決辦法: 在主目錄下執(zhí)行 hexo new page "tags"或者h(yuǎn)exo new page "category"
在/source/tags/index.md中設(shè)置修改
? blemesh cat ./source/tags/index.md --- type: "tags" comments: false date: 2019-02-24 02:53:03 ---
同理categories:
? blemesh cat ./source/category/index.md --- type: "category" comments: false date: 2019-02-24 02:53:34 ---
或者about me:
? blemesh cat ./source/about/index.md --- title: about type: "about-me" comments: false date: 2019-02-22 00:09:58 ---
六、后臺(tái)啟動(dòng)
hexo server進(jìn)程一直在后臺(tái)運(yùn)行的辦法(執(zhí)行hexo server -d &在一段時(shí)間后會(huì)停止hexo,此時(shí)無(wú)法打開后臺(tái)),采用pm2接管hexo進(jìn)程:
npm install -g pm2
在博客的根目錄下創(chuàng)建一個(gè)hexo_run.js的文件,文件內(nèi)容如下:
? blemesh cat hexo_run.js const { exec } = require('child_process') exec('hexo server -p 8001 -d',(error, stdout, stderr) => { if(error){ console.log('exec error: ${error}') return } console.log('stdout: ${stdout}'); console.log('stderr: ${stderr}'); })
運(yùn)行開啟命令: pm2 start hexo_run.js
最后附上 zhouwaiqiang 寫的一個(gè)hexo重啟腳本restart_hexo.sh(需要先配置好nginx),需要重啟刷新的時(shí)候執(zhí)行source restart_hexo.sh即可:
? blemesh cat restart_hexo.sh #!/bin/bash PROCESS=`ps -ef|grep hexo|grep -v grep|grep -v PPID|awk '{ print $2 }'` PROC_NAME="pm2" for i in $PROCESS do echo "Kill the $1 process [ $i ]" kill -9 $i done hexo clean #清除數(shù)據(jù) hexo generate #生成靜態(tài)文件public文件夾 ProcNumber=`ps -ef |grep -w $PROC_NAME|grep -v grep|wc -l` if [ $ProcNumber -le 0 ];then pm2 start hexo_run.js else pm2 restart hexo_run.js fi service nginx restart
七、體驗(yàn)
啟動(dòng):sh ./restart_hexo.sh
訪問(wèn)主頁(yè): http://www.beautifulzzzz.com:8001/
訪問(wèn)nginx靜態(tài)快速版網(wǎng)頁(yè): http://www.beautifulzzzz.com:3001/
訪問(wèn)后臺(tái)編寫文章: http://www.beautifulzzzz.com:8001/admin/
編寫好之后點(diǎn)擊Deploy會(huì)自動(dòng)調(diào)用之前的腳本,靜態(tài)網(wǎng)頁(yè)就有了
以上是“基于Node.js搭建hexo博客的示例”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!