Files
unifi-access-dashboard/.env.example
T

18 lines
722 B
Bash
Raw Normal View History

2026-05-28 00:39:46 -05:00
# Optional seed values for an auto-created "Default" controller.
# Only used on first boot when no controllers exist yet. After that, manage
# controllers from the dashboard UI (Controllers button).
2026-03-04 23:17:32 -06:00
UNIFI_HOST=10.0.0.1
UNIFI_PORT=12445
UNIFI_API_TOKEN=YOUR_ACCESS_DEVELOPER_TOKEN_HERE
WEBHOOK_SECRET=YOUR_WEBHOOK_SECRET_HERE
2026-05-28 00:39:46 -05:00
# Required.
2026-03-04 20:04:46 -06:00
TZ=America/Chicago
DB_PATH=/data/dashboard.db
2026-05-28 00:39:46 -05:00
# Optional. Used when registering webhooks on controllers so they know how to
# reach this dashboard. If unset, the URL is derived from the browser request
# used to add the controller. Set this if your controller can't reach that URL
# (e.g. you added the controller from a different network).
# DASHBOARD_BASE_URL=http://10.0.0.5:8000