Hexo迁移至hugo

今天正式把之前的博客文章迁移至hugo了,终于不用再忍受hexo缓慢的生成速度了,以下记录一下迁移过程 一、hugo安装 brew install hugo 二、创建网站 hugo new site iblog 三、安装主题 git clone https://github.com/adityatelange/hugo-PaperMod themes/PaperMod --depth=1 cd themes/PaperMod git pull 四、配置config.yml(不使用config.toml) baseURL: "https://iblog.zone" title: ylw's blog paginate: 10 theme: PaperMod defaultContentLanguage: zh permalinks: posts: /archives/:slug/ enableInlineShortcodes: true enableRobotsTXT: true buildDrafts: false buildFuture: false buildExpired: false enableEmoji: true # googleAnalytics: UA-123-45 minify: disableXML: true minifyOutput: false params: env: production # to enable google analytics, opengraph, twitter-cards and schema....

2022-03-24 · 2 分钟

使用宝塔面板将Hexo部署到腾讯轻量级应用服务器

一、安装宝塔面板 yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh 安装成功后,显示如下内容 外网面板地址: http://xx:8888/xx 内网面板地址: http://10.0.16.13:8888/xx username: xx password: xx If you cannot access the panel, release the following panel port [8888] in the security group 若无法访问面板,请检查防火墙/安全组是否有放行面板[8888]端口 在宝塔面板网站管理中,添加站点(第一次进入需要安装nginx,点击快速安装即可) 二、Git仓库创建 1、服务端增加git用户 adduser git passwd git 2、给git用户授权 vim /etc/sudoers #在root ALL=(ALL) ALL 下方添加一行 git ALL=(ALL) ALL 3、用户端跟服务端做免密登录 用户端生成密钥对 ssh-keygen 将秘钥传到服务端 ssh-copy-id git@server_ip # 输入git刚创建的git用户的密码 验证 ssh git@server_ip # 如果没有要求输入密码就登录进去了 说明免密成功 4、创建git仓库...

2021-12-09 · 1 分钟