hexo博客加密设置 发表于 2019-07-05 更新于 2025-01-02 分类于 软件应用 本文字数: 650 阅读时长 ≈ 1 分钟 在添加 Hexo 博客 加密功能的模块有2个,一个是hexo-blog-encrypt,另一个是hexo-encrypt。可任选一个。 # hexo-blog-encrypt插件 ## 安装hexo-blog-encrypt插件 1npm install --save hexo-blog-encrypt ## 配置启用插件 123# Securityencrypt: # hexo-blog-encrypt enable: true ## 加密文章 1234567 ---title: Hello Worlddate: 2016-03-30 21:18:02password: 123456 #密码abstract: Something was encrypted, please enter password to read. #摘要message: Welcome to my blog, enter password to read. # 描述性文字--- hexo-encrypt插件 安装 1npm install hexo-encrypt --save 博客设置**_config.yml**添加 123# encrypt encrypt: pwdfile: encrypt_password 在需要加密的文章上添加 123456789101112---title: hexo博客加密设置tags: - 加密模板categories: - hexo加密comments: truemathjax: falsedate: 2019-07-05 02:31:41encrypt: true enc_pwd: 123456 #设置的密码---