Initial Multi SimAdmin dashboard

This commit is contained in:
chick
2026-07-07 21:26:43 +08:00
commit 143ab369c9
11 changed files with 2169 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"server": {
"host": "0.0.0.0",
"port": 8788
},
"instances": [
{
"id": "simadmin-open",
"name": "无密码 SimAdmin",
"url": "http://192.168.68.1:3000",
"description": "密码保护关闭或尚未配置密码的实例",
"auth": { "mode": "none" },
"tags": ["open"]
},
{
"id": "simadmin-password",
"name": "有密码 SimAdmin",
"url": "http://192.168.68.2:3000",
"description": "服务端代登录并保存会话 Cookie;密码只保存在本地 config.json",
"auth": {
"mode": "password",
"password": "CHANGE_ME"
},
"tags": ["password"]
}
]
}