手动安装docsify

安装docsify详见:docsify

1、下载

wget https://codeload.github.com/docsifyjs/docsify/zip/refs/heads/master -o docsify-master.zip

2、解压

unzip docsify-master.zip

3、移动文件到nginx的html所在目录【略】

4、配置nginx,示例如下

location / {
    root   'docsify所在的目录';
    index  index.html index.htm;

    #add_header Cache-Control "no-cache, no-store, must-revalidate";
    #add_header Pragma "no-cache";
    #add_header Expires 0;
}

5、重启nginx

nginx -s reload

6、浏览器通过ip或域名访问项目【略】

7、清空原有的index.html内容,以下为手动编写的index.html文件内容




    
    
    
    


Loading...

 更换css、js使用国内cdn资源





    
    
    
    
    snail


Loading...

8、根据情况修改_sidebar.md、_navbar.md,示例

_sidebar.md内容如下(zh-cn目录的文件已从官网下载)

* 入门

  * [快速开始](zh-cn/quickstart.md)
  * [多页文档](zh-cn/more-pages.md)
  * [定制导航栏](zh-cn/custom-navbar.md)
  * [封面](zh-cn/cover.md)

* 定制化

  * [配置项](zh-cn/configuration.md)
  * [主题](zh-cn/themes.md)
  * [插件列表](zh-cn/plugins.md)
  * [开发插件](zh-cn/write-a-plugin.md)
  * [Markdown 配置](zh-cn/markdown.md)
  * [代码高亮](zh-cn/language-highlight.md)

* 指南

  * [部署](zh-cn/deploy.md)
  * [文档助手](zh-cn/helpers.md)
  * [兼容 Vue](zh-cn/vue.md)
  * [CDN](zh-cn/cdn.md)
  * [离线模式(PWA)](zh-cn/pwa.md)
  * [服务端渲染 (SSR)](zh-cn/ssr.md)
  * [文件嵌入](zh-cn/embed-files.md)

* [Awesome docsify](zh-cn/awesome.md)
* [Changelog](zh-cn/changelog.md)

你可能感兴趣的:(docsify)