default sse to 127.0.0.1

This commit is contained in:
Jeremiah Lowin 2025-04-16 09:33:34 -04:00
commit 0fe09ad0b0

View file

@ -42,7 +42,7 @@ class ServerSettings(BaseSettings):
log_level: LOG_LEVEL = Field(default_factory=lambda: Settings().log_level)
# HTTP settings
host: str = "0.0.0.0"
host: str = "127.0.0.1"
port: int = 8000
sse_path: str = "/sse"
message_path: str = "/messages/"