Debian12+openresty1.25.3.2 部署 markdown在线编辑器 Editor.md

openresty的下载安装步骤参考:

http://openresty.org/cn/linux-packages.html#debian

安装完成后openresty已经自动启动,并启用了开机启动。
——傻瓜式地开箱即用:

systemctl status openresty

补充信息:

  • conf目录:
    /etc/openresty -> /usr/local/openresty/nginx/conf/

  • html目录:
    /usr/local/openresty/nginx/html

Editor.md 部署

项目下载:

cd /usr/local/openresty/nginx/html

git clone https://gitee.com/pandao/editor.md.git

# 或者直接下载并解压
# wget https://gitee.com/pandao/editor.md/repository/archive/master.zip
# unzip master.zip

到此,就可以用浏览器访问了Editor.md:

http://hostname-or-ip/editor.md/examples/index.html

在首页加个入口?(可选)

因为我不喜欢输入那么长的URL路径,
想从默认站点 http://hostname-or-ip/ 点击链接跳转过去。

就修改默认的首页文件:
/usr/local/openresty/nginx/html/index.html

<body>这一行下面,增加以下内容并保存:

<section class="social white-theme">
  <ul>
    <li>
      <a class="text-decoration-no flex justify-content-center align-items-center" href="editor.md/examples/index.html">
        Editor.md
      </a>
    </li>
  </ul>
</section>

最后,访问或者刷新首页即可。


示意图:

image

posted @ 2024-08-22 09:47  M1927  阅读(76)  评论(0编辑  收藏  举报