
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 22s
24 lines
450 B
Bash
Executable File
24 lines
450 B
Bash
Executable File
#!/bin/bash
|
|
# shellcheck disable=SC1091
|
|
source "${AGENT_PATH}/common.sh"
|
|
|
|
echo "${HOST_PORT:-8880}"
|
|
echo "8554"
|
|
echo "8888"
|
|
echo "8889"
|
|
echo "9997"
|
|
echo "9998"
|
|
echo "9090"
|
|
echo "3000"
|
|
|
|
# Port Requirements:
|
|
|
|
# - 8880 - Web interface (changed from 8080)
|
|
# - 8554 - RTSP server
|
|
# - 8888 - HLS streaming
|
|
# - 8889 - WebRTC signaling
|
|
# - 9997 - MediaMTX API
|
|
# - 9998 - Metrics
|
|
# - 9090 - Prometheus (optional)
|
|
# - 3000 - Grafana (optional)
|