docs: Add 42 files
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 59s

This commit is contained in:
Your Name
2025-09-01 14:04:58 +12:00
parent 014104df35
commit 11ddc264eb
21 changed files with 1284 additions and 0 deletions

16
squashkiwi-streaming/ports.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/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