18 lines
686 B
Plaintext
18 lines
686 B
Plaintext
# --- Home Assistant ---
|
|
# Base URL of your Home Assistant instance (reachable from the container)
|
|
HA_URL=http://192.168.33.33:8123
|
|
|
|
# Long-lived access token. NEVER commit a real token.
|
|
HA_TOKEN=replace-me-with-a-long-lived-access-token
|
|
|
|
# --- Arcana FX backend ---
|
|
# Public base URL the Home Assistant media player will use to fetch /media.
|
|
# Must be reachable from HA — typically the LAN address of the host running this container.
|
|
PUBLIC_BASE_URL=http://192.168.33.150:8091
|
|
|
|
# Port the backend listens on inside the container (compose maps host 8091 -> 8091).
|
|
PORT=8091
|
|
|
|
# Optional: comma separated origins allowed by CORS. Leave empty to allow same-origin only.
|
|
ALLOWED_ORIGINS=
|