
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 59s
16 lines
355 B
Bash
Executable File
16 lines
355 B
Bash
Executable File
#!/bin/bash
|
|
# shellcheck disable=SC1091
|
|
source "${AGENT_PATH}/common.sh"
|
|
|
|
echo "=== Port Configuration ==="
|
|
echo "Web Interface: ${HOST_PORT:-8080}"
|
|
echo "RTSP: 8554"
|
|
echo "HLS: 8888"
|
|
echo "WebRTC: 8889"
|
|
echo "MediaMTX API: 9997"
|
|
echo "Metrics: 9998"
|
|
|
|
if [[ "${ENABLE_MONITORING}" == "true" ]]; then
|
|
echo "Prometheus: 9090"
|
|
echo "Grafana: 3000"
|
|
fi |