国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > JS > 正文

基于Node.js搭建hexo博客過程詳解

2024-05-06 16:52:44
字體:
來源:轉載
供稿:網友

一、安裝新版本的nodejs和npm

安裝n模塊:

npm install -g n

升級node.js到最新穩定版

n stable

二、安裝hexo

note: 參考github,不要去其官網

安裝Hexo

npm install hexo-cli -g

Setup your blog

hexo init blemeshcd blemesh

安裝Cactus主題,眾多開源主題中比較簡潔的一個:

主題頁

Cactus頁

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: landscapetheme: cactustheme_config:colorscheme: white

Create pages and articles with the hexo new [layout] <title> command. For example, to create an "about me" page, run:

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(自己設置用戶名)password_hash: XXXXXXXXX(密碼,但是是明文經過bcrypt hash加密后生成的)secret: hey hexo(用于cookie安全)deployCommand: './admin_script/hexo-generate.sh'(調用該腳本

注:

1)其中password_hash是你自己的明文密碼經過加密后的字符串,但是如果用類似下面的網址: https://bcrypt-generator.com/ 會生成:$2y$10$pJjIxxxxxfMn9U/xxxxxNuuA20kh1eoB7vZxxxxx/7WpeV7IOxxxx類似的加密串,但是運行會報invalid salt revision錯誤,其原因是:

? blemesh cat node_modules/hexo-admin/www/bundle.js | head -4851 | tail -10if (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;}

需要版本號是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)其中配置中有個腳本: ./admin_script/hexo-generate.sh 需要自己創建:

? blemesh cat admin_script/hexo-generate.sh hexo g? blemesh chmod +x admin_script/hexo-generate.sh 

這個腳本有什么用,啥時候觸發?可以參考: https://www.jianshu.com/p/68e727dda16d step 5,admin后臺管理博客有個deploy按鈕,點擊這個按鈕就會執行這個腳本,該腳本會將md文件生成靜態網頁,如果用nginx配置去訪問靜態網頁,速度會快很多。

四、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

注:
執行nginx后會報錯誤:nginx 403 Forbidden,原因是配置文件nginx.conf文件的執行用戶和當前用戶不一致導致的,把之前的nobody改成當前用戶root。

五、增加tag

hexo主頁下的tag標簽、category標簽無顯示找不到:

解決辦法: 在主目錄下執行 hexo new page "tags"或者hexo new page "category"
在/source/tags/index.md中設置修改

? blemesh cat ./source/tags/index.md ---type: "tags"comments: falsedate: 2019-02-24 02:53:03---

同理categories:

? blemesh cat ./source/category/index.md ---type: "category"comments: falsedate: 2019-02-24 02:53:34---

或者about me:

? blemesh cat ./source/about/index.md ---title: abouttype: "about-me"comments: falsedate: 2019-02-22 00:09:58---

六、后臺啟動

hexo server進程一直在后臺運行的辦法(執行hexo server -d &在一段時間后會停止hexo,此時無法打開后臺),采用pm2接管hexo進程:

npm install -g pm2

在博客的根目錄下創建一個hexo_run.js的文件,文件內容如下:

? 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}');})

運行開啟命令: pm2 start hexo_run.js

最后附上 zhouwaiqiang 寫的一個hexo重啟腳本restart_hexo.sh(需要先配置好nginx),需要重啟刷新的時候執行source restart_hexo.sh即可:

? blemesh cat restart_hexo.sh #!/bin/bashPROCESS=`ps -ef|grep hexo|grep -v grep|grep -v PPID|awk '{ print $2 }'`PROC_NAME="pm2"for i in $PROCESSdoecho "Kill the $1 process [ $i ]"kill -9 $idonehexo clean #清除數據hexo generate #生成靜態文件public文件夾ProcNumber=`ps -ef |grep -w $PROC_NAME|grep -v grep|wc -l`if [ $ProcNumber -le 0 ];thenpm2 start hexo_run.jselsepm2 restart hexo_run.jsfiservice nginx restart

七、體驗

  • 啟動:sh ./restart_hexo.sh
  • 訪問主頁: http://www.beautifulzzzz.com:8001/
  • 訪問nginx靜態快速版網頁: http://www.beautifulzzzz.com:3001/
  • 訪問后臺編寫文章: http://www.beautifulzzzz.com:8001/admin/
  • 編寫好之后點擊Deploy會自動調用之前的腳本,靜態網頁就有了

Node.js,hexo,博客

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VeVb武林網。


注:相關教程知識閱讀請移步到JavaScript/Ajax教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 南岸区| 石林| 湟中县| 都江堰市| 临泽县| 正安县| 尉犁县| 阳朔县| 抚宁县| 东莞市| 锦屏县| 友谊县| 吉首市| 宜都市| 横峰县| 本溪市| 武邑县| 尉氏县| 奉化市| 若羌县| 林州市| 台湾省| 鹤峰县| 区。| 黄冈市| 得荣县| 库伦旗| 竹山县| 从江县| 湘潭县| 高青县| 法库县| 和林格尔县| 仪陇县| 延吉市| 临猗县| 固镇县| 澄迈县| 宾川县| 江川县| 涪陵区|