20 lines
788 B
Bash
20 lines
788 B
Bash
#
|
|
# values to be used for substitution by docker compose in compose.yml AND .*.env files
|
|
#
|
|
DOMAINNAME=sthome.org
|
|
|
|
APPLICATION_NAME=frigate
|
|
WEBAPP_NAME=frigate-px
|
|
DOCKERDIR=/opt
|
|
MEDIADIR=/mnt/frigate/media
|
|
|
|
STACKSDIR=${DOCKERDIR}/stacks/${APPLICATION_NAME}
|
|
DATAROOT=${DOCKERDIR}/data
|
|
DATADIR=${DATAROOT}/${APPLICATION_NAME}
|
|
SECRETSDIR=${STACKSDIR}/secrets
|
|
|
|
INTERNAL_PORT=5000 # (HTTP): Internal, unauthenticated access. Good for local access or Home Assistant integration, but should be blocked externally
|
|
RTSP_PORT=8554 # (RTSP): For streaming camera feeds, especially the Birdseye view
|
|
WEBRTC_PORT=8555 # (WebRTC): For two-way audio and live streams, often used by mobile apps
|
|
WEBUI_PORT=8971 # (HTTPS/WS): Main authenticated access for UI and API. Use with reverse proxies for TLS/SSL
|