From 8c87777d854fdeba99625bc716b8e586b2f899b4 Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sun, 19 Apr 2026 10:54:50 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Change=20listen=20address=20in?= =?UTF-8?q?=20configuration=20file=20to=20bind=20to=20localhost=20and=20ad?= =?UTF-8?q?d=20a=20newline=20at=20the=20end=20of=20the=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- llm-proxy.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/llm-proxy.toml b/llm-proxy.toml index 80a2540..7ad5793 100644 --- a/llm-proxy.toml +++ b/llm-proxy.toml @@ -4,10 +4,11 @@ upstream_url = "https://api.openai.com/v1/chat/completions" # Listen address -listen_addr = ":8080" +listen_addr = "127.0.0.1:8080" # Upstream API key api_key = "" # Skip TLS verification -insecure = false \ No newline at end of file +insecure = false +