github的伺服器在國外,訪問速度慢,而coding是國內的,訪問比較快。
因此進行github和coding雙部署,再進行分流操作,可以加快開啟速度。
首先在根目錄新增coding倉庫:
deploy:
- type: git
repo:
github: [email protected]:cdqpt/cdqpt.github.io.git
coding: [email protected]:chendeqiangsp/chendeqiangsp.coding.me.git
brach: master
把本地生成 ssh 公匙新增到 coding ,然後 hexo clean && hexo g && hexo d 部署上去就是了.
我使用的是阿里雲網域名稱。
開啟阿里雲控制台 - 解析設定 - 新增記錄
a
@124.156.1xx.2xx
a@谷歌
185.199.1xx.1xx
其中,記錄值需要ipv4格式,可以先找到倉庫的原網域名稱,如:
github的在
倉庫 - setting - repository name - cdqpt.github.io
coding的在
pages - 服務設定 - 自定義網域名稱 - chendeqiangsp.coding.me/chendeqiangsp.coding.me
然後將網域名稱貼上到ip工具裡就可以獲得ipv4了,也就是記錄值。
hexo雙線部署及分流
github的伺服器在國外,訪問速度慢,而coding是國內的,訪問比較快。因此進行github和coding雙部署,再進行分流操作,可以加快開啟速度。首先在根目錄新增coding倉庫 deploy type git repo github git github.com cdqpt cdqpt.gi...
Hugo部落格雙線部署
hugo 是由 go 語言實現的靜態 生成器。簡單 高效 快速部署,可以自定義使用各種開源主題,本站採用 loveit。靜態 託管,考慮到國內 國外的差異,可選用不同的靜態 託管服務,國內coding.net,國外有netlify github,都提供了免費的託管服務及構建服務,通過網域名稱解析,根...
hexo部署步驟
hexo clean hexo generate hexo deploy在執行下面的命令後,hexo g 生成 hexo s 啟動本地服務,進行文章預覽除錯瀏覽器輸入http localhost 4000,檢視搭建效果。此後的每次變更 config.yml 檔案或者新建檔案都可以先用此命令除錯,尤其...