💬 修改文档和启动日志描述,取消 /#/ 提示

This commit is contained in:
赵俊
2021-09-19 15:37:10 +08:00
parent 603c1b4654
commit 4a0bdc3baf
2 changed files with 4 additions and 4 deletions

View File

@@ -102,11 +102,11 @@ chmod +x zfile/bin/*.sh
访问地址:
用户前台: http://127.0.0.1:8080/#/main
用户前台: http://127.0.0.1:8080/main
初始安装: http://127.0.0.1:8080/#/install
初始安装: http://127.0.0.1:8080/install
管理后台: http://127.0.0.1:8080/#/admin
管理后台: http://127.0.0.1:8080/admin
## 预览

View File

@@ -37,7 +37,7 @@ public class StartupListener implements ApplicationListener<ApplicationStartedEv
for (String localIp : localIps) {
String addr = String.format("http://%s:%s", localIp, serverPort);
indexAddr.append(addr).append("\t");
indexAdminAddr.append(addr).append("/#/admin").append("\t");
indexAdminAddr.append(addr).append("/admin").append("\t");
}
log.info("ZFile started at " + indexAddr);
log.info("ZFile Admin started at " + indexAdminAddr);