generated from CubeCraft-Creations/Tracehound
832dd7cbf2
The SPA doesn't send X-API-Key, so a non-empty api_key made the dashboard 401 and show no cameras. Default api_key to "" (no auth) for the closed travel-router network, consistent with anonymous MQTT. Document the kiosk decision, the GoPro Hero 3 protocol, and the gotcha that the pull updater deploys only the binary (config.yaml must be changed on the Pi). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
28 lines
595 B
YAML
28 lines
595 B
YAML
# RemoteRig Central Hub Configuration
|
|
# Target platform: Raspberry Pi Zero 2 W
|
|
|
|
# Database
|
|
db_path: "remoterig.db"
|
|
|
|
# API key for endpoint authentication. Empty = kiosk mode (no auth) —
|
|
# intended for the closed travel-router LAN, consistent with anonymous MQTT.
|
|
# Set a value to require the X-API-Key header on /api/v1/* (the SPA would
|
|
# then need it too).
|
|
api_key: ""
|
|
|
|
# Server settings
|
|
port: 8080
|
|
read_timeout: 5s
|
|
write_timeout: 10s
|
|
idle_timeout: 120s
|
|
|
|
# MQTT Broker
|
|
mqtt:
|
|
broker: "localhost:1883"
|
|
client_id: "remoterig-hub"
|
|
|
|
# Platform
|
|
platform:
|
|
type: "pi-zero-2w"
|
|
max_cameras: 16
|