Commit e367013d authored by uuo00_n's avatar uuo00_n

docs(deploy): 更新部署脚本中的访问地址说明

将服务器IP替换为localhost以明确本地部署场景
添加更多服务的文档访问地址
parent af1043ad
......@@ -37,9 +37,12 @@ if [ $? -eq 0 ]; then
echo "服务状态:"
$DOCKER_COMPOSE_CMD -f docker-compose.prod.yml ps
echo ""
echo "访问地址:"
echo "- API 网关: http://服务器IP:8080"
echo "- Swagger 文档: http://服务器IP:8080/docs/llm/"
echo "访问地址 (本地部署请使用 localhost,服务器部署请使用服务器IP):"
echo "- API 网关: http://localhost:8080"
echo "- Auth Service 文档: http://localhost:8080/docs/auth/"
echo "- Edu Service 文档: http://localhost:8080/docs/edu/"
echo "- LLM Service 文档: http://localhost:8080/docs/llm/"
echo "- Security Service 文档: http://localhost:8080/docs/security/"
else
echo -e "${YELLOW}部署过程中出现错误,请检查日志。${NC}"
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment