1234567891011121314151617181920212223242526 |
- export const config = [
- {
- id: 0,
- nodeEnv: "test",
- name: "测试环境",
- domain: "",
- host: "192.168.40.21",
- port: "22",
- username: "root",
- password: "hsmysql",
- path: "/usr/share/nginx/html",
- removepath: "/usr/share/nginx/html"
- },
- {
- id: 1,
- nodeEnv: "prod",
- name: "生产环境",
- domain: "",
- host: "192.168.40.18",
- port: "22",
- username: "root",
- password: "admin1,xxh",
- path: "/data/node_web/big_model_web",
- removepath: "/data/node_web/big_model_web"
- },
- ];
|