Revert "Helm chart"

This commit is contained in:
SengokuCola
2025-12-28 00:07:03 +08:00
committed by GitHub
parent 65f91367c0
commit e1482977b1
35 changed files with 2 additions and 2065 deletions

View File

@@ -1,4 +1,4 @@
"""独立的 WebUI 服务器 - 默认运行在 127.0.0.1:8001"""
"""独立的 WebUI 服务器 - 运行在 0.0.0.0:8001"""
import asyncio
import mimetypes
@@ -15,7 +15,7 @@ logger = get_logger("webui_server")
class WebUIServer:
"""独立的 WebUI 服务器"""
def __init__(self, host: str = "127.0.0.1", port: int = 8001):
def __init__(self, host: str = "0.0.0.0", port: int = 8001):
self.host = host
self.port = port
self.app = FastAPI(title="MaiBot WebUI")