-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy-web.local.env.example
More file actions
22 lines (19 loc) · 1.13 KB
/
Copy pathdeploy-web.local.env.example
File metadata and controls
22 lines (19 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# AgentForge WebUI (React SPA) — LOCAL run knobs. Optional: copy to deploy-web.local.env
# only if you need to override the defaults. Sourced by scripts/deploy-web-local.sh
# and scripts/teardown-web-local.sh, used for compose ${VAR} interpolation in
# docker-compose.web.local.yml.
#
# No secrets here — both values are safe defaults for a single-host run. If you do
# create deploy-web.local.env, add it to .gitignore to keep git status clean.
# Host port to publish the SPA on.
WEB_PORT=8400
# Backend the SPA proxies /ws, /api, /uploads to. The default reaches a backend
# running on THIS host (the local AgentForge web app on :8200) from inside the
# container. Point it at a remote vhost to drive a backend on another box, e.g.
# AGENT_BACKEND=https://agent-web.remote (the WS+REST :8200 web service,
# NOT the :8100 search/index API).
AGENT_BACKEND=http://host.docker.internal:8200
# Host header nginx sends upstream (and the SNI name for https backends). Leave
# unset — deploy-web-local.sh derives it from AGENT_BACKEND ("$host" for a local
# backend, the hostname for a remote vhost). Set it only to override the guess.
# AGENT_BACKEND_HOST=