12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- module.exports = [
- ["/deploy/", "安装部署"],
- {
- title: "基于 CentOS 安装",
- path: "/deploy/centos/",
- children: [{
- title: "操作系统",
- path: "/deploy/centos/os/",
- children: [
- ["/deploy/centos/os/install", "安装系统"],
- ["/deploy/centos/os/config", "配置系统"],
- ["/deploy/centos/os/cmd", "常用命令"]
- ]
- },
- {
- title: "基础服务",
- path: "/deploy/centos/server/",
- children: [
- ["/deploy/centos/server/nginx", "Nginx"],
- ["/deploy/centos/server/jdk", "JDK"],
- ["/deploy/centos/server/tomcat", "Tomcat"],
- ["/deploy/centos/server/python", "Python"],
- ["/deploy/centos/server/postgresql", "PostgreSQL"],
- ]
- },
- {
- title: "应用服务",
- path: "/deploy/centos/app-server/",
- children: [
-
-
-
-
- ]
- }
- ]
- },
- {
- title: "基于 Windows 安装",
- path: "/deploy/windows/",
- children: []
- }
- ]
|