12 lines
160 B
Bash
12 lines
160 B
Bash
# 服务器配置
|
|
PORT=9000
|
|
HOST=0.0.0.0
|
|
BACKLOG=511
|
|
|
|
# 日志配置
|
|
LOG_LEVEL=info
|
|
LOG_FILE=./logs/app.log
|
|
|
|
# 插件配置
|
|
PLUGIN_NAME=myapp
|
|
API_PREFIX=/api/v1 |