修复后端服务外网访问问题
Some checks failed
continuous-integration/drone/push Build is failing

- 将 server.address 从 127.0.0.1 改为 0.0.0.0,允许外部访问
- 配置 UFW 防火墙允许 8123 端口

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
n72595987@gmail.com
2025-11-29 20:08:50 +08:00
parent f9df72ebb8
commit 15579f43cb

View File

@@ -1,7 +1,7 @@
#服务器配置
server:
port: 8123
address: 127.0.0.1
address: 0.0.0.0
undertow:
threads:
# 设置IO线程数, 它主要执行非阻塞的任务,它们会负责多个连接, 默认设置每个CPU核心一个线程