From 30344f38b4638346992e14a0994296c4f2454e5f Mon Sep 17 00:00:00 2001 From: Jonathan Laliberte Date: Fri, 13 Jan 2023 14:25:23 -0500 Subject: [PATCH] Docs: Fix link to contibuting docs Docs: Make go2rtc docs a little more clear --- docs/README.md | 2 +- docs/docs/configuration/live.md | 14 +++++++++++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/docs/README.md b/docs/README.md index eb435c5b6..bd4aded51 100644 --- a/docs/README.md +++ b/docs/README.md @@ -2,4 +2,4 @@ This website is built using [Docusaurus 2](https://v2.docusaurus.io/), a modern static website generator. -For installation and contributing instructions, please follow the [Contributing Docs](https://blakeblackshear.github.io/frigate/contributing). +For installation and contributing instructions, please follow the [Contributing Docs](https://docs.frigate.video/development/contributing). diff --git a/docs/docs/configuration/live.md b/docs/docs/configuration/live.md index fa4901f5e..f4830effd 100644 --- a/docs/docs/configuration/live.md +++ b/docs/docs/configuration/live.md @@ -21,7 +21,14 @@ webRTC works by creating a websocket connection on extra ports. One of the follo * Frigate is run with `network_mode: host` to support automatic UDP port pass through locally and remotely. See https://github.com/AlexxIT/go2rtc#module-webrtc for more details * Frigate is run with `network_mode: bridge` and has: * Router setup to forward port `8555` to port `8555` on the Frigate device. - * For local webRTC, you will need to create your own go2rtc config: + * Added port to your docker ports list, for example: + ```yaml + ports: + - "5000:5000" # Frigate Web UI + - "8555:8555" # go2rtc + - "8554:8554" # RTSP feeds + ``` + * For local webRTC, you will need to create your own go2rtc config file: ```yaml log: @@ -34,11 +41,12 @@ webrtc: - stun:8555 ``` -and pass that config to Frigate via docker or `frigate-go2rtc.yaml` for addon users: +You then need to pass that config to Frigate via docker (see below), or create it as `frigate-go2rtc.yaml` for addon users. -See https://github.com/AlexxIT/go2rtc#module-webrtc for more details ```yaml volumes: - /path/to/your/go2rtc.yaml:/config/frigate-go2rtc.yaml:ro ``` + +See https://github.com/AlexxIT/go2rtc#module-webrtc for more details on configuring go2rtc. \ No newline at end of file