17 lines
622 B
Bash
17 lines
622 B
Bash
# Path to the wiki folder (absolute or relative to project root).
|
|
# In Docker this is /app/wiki and is baked into the image.
|
|
WIKI_PATH=./wiki
|
|
|
|
# HTTP bind. PORT=3000 inside the container; HOST=0.0.0.0 for Docker,
|
|
# 127.0.0.1 for purely local dev.
|
|
PORT=3000
|
|
HOST=127.0.0.1
|
|
|
|
# Comma-separated list of Host headers accepted by the MCP transport
|
|
# (DNS rebinding protection). Required: requests with a Host header that
|
|
# does not match one of these entries are rejected by the SDK transport.
|
|
#
|
|
# Local dev: 127.0.0.1:3000,localhost:3000
|
|
# Production: mcp-wms.arthur-ria.fr
|
|
MCP_ALLOWED_HOSTS=127.0.0.1:3000,localhost:3000
|