迁移服务器;分开开发端与生产端;去除废弃接口;对象存储、Kong网关使用SSL;修改所有使用内网地址的代码;切换域名;更新Ktor、ws-scrcpy启动服务;修改Prometheus配置;
This commit is contained in:
@@ -38,7 +38,7 @@ const routes: RouteRecordRaw[] = [
|
||||
component: IFrameView,
|
||||
meta: {
|
||||
icon: 'mdi:wall-fire',
|
||||
iframeSrc: 'http://s1.ronsunny.cn:13010/',
|
||||
iframeSrc: 'http://ai.ronsunny.cn:13010/',
|
||||
keepAlive: false,
|
||||
title: 'RAG Flow',
|
||||
},
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
// component: IFrameView,
|
||||
// meta: {
|
||||
// icon: 'mdi:wall-fire',
|
||||
// iframeSrc: 'http://s1.ronsunny.cn:13010/',
|
||||
// iframeSrc: 'http://ai.ronsunny.cn:13010/',
|
||||
// keepAlive: false,
|
||||
// title: 'RAG Flow',
|
||||
// },
|
||||
|
||||
@@ -3,6 +3,8 @@ import type { RouteRecordRaw } from 'vue-router';
|
||||
import { IFrameView } from '#/layouts';
|
||||
import { $t } from '#/locales';
|
||||
|
||||
const baseAddress = '10.0.4.22';
|
||||
|
||||
const routes: RouteRecordRaw[] = [
|
||||
{
|
||||
meta: {
|
||||
@@ -21,7 +23,7 @@ const routes: RouteRecordRaw[] = [
|
||||
component: IFrameView,
|
||||
meta: {
|
||||
icon: 'mdi:monitor-dashboard',
|
||||
link: 'http://10.10.10.9:8002/',
|
||||
link: `http://${baseAddress}:8002/`,
|
||||
title: '网关',
|
||||
},
|
||||
},
|
||||
@@ -31,7 +33,7 @@ const routes: RouteRecordRaw[] = [
|
||||
component: IFrameView,
|
||||
meta: {
|
||||
icon: 'mdi:monitor-dashboard',
|
||||
link: 'http://10.10.10.9:9001',
|
||||
link: `https://${baseAddress}:9001/`,
|
||||
title: '对象存储',
|
||||
},
|
||||
},
|
||||
@@ -41,7 +43,7 @@ const routes: RouteRecordRaw[] = [
|
||||
component: IFrameView,
|
||||
meta: {
|
||||
icon: 'mdi:monitor-dashboard',
|
||||
link: 'http://10.10.10.9:9091/webui',
|
||||
link: `http://${baseAddress}:9091/webui`,
|
||||
title: '向量数据库',
|
||||
},
|
||||
},
|
||||
@@ -51,7 +53,7 @@ const routes: RouteRecordRaw[] = [
|
||||
component: IFrameView,
|
||||
meta: {
|
||||
icon: 'mdi:monitor-dashboard',
|
||||
link: 'http://10.10.10.9:3000/',
|
||||
link: `http://${baseAddress}:3000/`,
|
||||
title: '向量数据库Attu',
|
||||
},
|
||||
},
|
||||
@@ -61,7 +63,7 @@ const routes: RouteRecordRaw[] = [
|
||||
component: IFrameView,
|
||||
meta: {
|
||||
icon: 'mdi:monitor-dashboard',
|
||||
link: 'http://10.10.10.9:15672',
|
||||
link: `http://${baseAddress}:15672`,
|
||||
title: '消息队列',
|
||||
},
|
||||
},
|
||||
@@ -71,7 +73,7 @@ const routes: RouteRecordRaw[] = [
|
||||
component: IFrameView,
|
||||
meta: {
|
||||
icon: 'mdi:monitor-dashboard',
|
||||
link: 'http://10.10.10.9:13011',
|
||||
link: `https://ai.ronsunny.cn:13011/`,
|
||||
title: '容器管理',
|
||||
},
|
||||
},
|
||||
@@ -81,7 +83,7 @@ const routes: RouteRecordRaw[] = [
|
||||
component: IFrameView,
|
||||
meta: {
|
||||
icon: 'mdi:monitor-dashboard',
|
||||
link: 'http://10.10.10.9:9090',
|
||||
link: `http://${baseAddress}:9090`,
|
||||
title: '日志监控',
|
||||
},
|
||||
},
|
||||
@@ -91,7 +93,7 @@ const routes: RouteRecordRaw[] = [
|
||||
component: IFrameView,
|
||||
meta: {
|
||||
icon: 'mdi:monitor-dashboard',
|
||||
link: 'http://10.10.10.9:3001',
|
||||
link: `http://${baseAddress}:3001`,
|
||||
title: '数据可视化',
|
||||
},
|
||||
},
|
||||
|
||||
@@ -127,7 +127,7 @@ const disconnectAll = async () => {
|
||||
<template #default>
|
||||
<Card class="ml-2 h-full">
|
||||
<iframe
|
||||
src="http://s1.ronsunny.cn:8090/remote"
|
||||
src="https://ai.ronsunny.cn:8090/remote"
|
||||
class="h-full w-full"
|
||||
></iframe>
|
||||
</Card>
|
||||
|
||||
Reference in New Issue
Block a user