37 lines
1.2 KiB
Bash
37 lines
1.2 KiB
Bash
# Copy to .env and fill in real values. DO NOT commit .env to git.
|
|
#
|
|
# Env var prefixes:
|
|
# FRIGATE_ - referenced via {FRIGATE_*} substitution in frigate_config/config.yml
|
|
# FN_ - read directly by frigate-notify (Viper). Note the DOUBLE underscore
|
|
# between YAML hierarchy levels: frigate.mqtt.password -> FN_FRIGATE__MQTT__PASSWORD
|
|
|
|
# ---- Camera credentials ----
|
|
FRIGATE_RTSP_USER=admin
|
|
FRIGATE_RTSP_PASSWORD=pick_a_url_safe_password
|
|
FRIGATE_FRONT_DOOR_IP=192.168.1.100
|
|
|
|
FRIGATE_RTSP_USER1=admin
|
|
FRIGATE_RTSP_PASSWORD1=changeme
|
|
FRIGATE_BACK_DOOR_IP=192.168.1.101
|
|
|
|
FRIGATE_RTSP_USER2=admin
|
|
FRIGATE_RTSP_PASSWORD2=changeme
|
|
FRIGATE_SQUIRREL_IP=192.168.1.102
|
|
|
|
# Future Anpviz camera with mic
|
|
# FRIGATE_RTSP_USER3=admin
|
|
# FRIGATE_RTSP_PASSWORD3=changeme
|
|
# FRIGATE_ANPVIZ_IP=192.168.1.103
|
|
|
|
# ---- MQTT broker ----
|
|
# Used by Frigate via {FRIGATE_MQTT_*} substitution
|
|
FRIGATE_MQTT_USER=frigate
|
|
FRIGATE_MQTT_PASSWORD=pick_a_strong_mqtt_password
|
|
|
|
# ---- frigate-notify ----
|
|
# Same MQTT password as above. Note double underscores between YAML levels.
|
|
FN_FRIGATE__MQTT__PASSWORD=same_value_as_FRIGATE_MQTT_PASSWORD
|
|
FN_FRIGATE__SERVER=http://frigate:5000
|
|
FN_FRIGATE__PUBLIC_URL=https://frigate.yourdomain.com
|
|
FN_ALERTS__NTFY__SERVER=https://ntfy.yourdomain.com
|