docs: replace example TURN secret with placeholder

Committed a generated hex string that looked like a real secret.
Replaced with YOUR_SECRET_HERE to make it obviously an example.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Fredrik Johansson
2026-06-25 21:52:50 +02:00
parent 02eb83b63a
commit 295851f966

View File

@@ -104,7 +104,7 @@ apt install coturn
listening-port=3478 listening-port=3478
fingerprint fingerprint
use-auth-secret use-auth-secret
static-auth-secret=b06c504fd091d23c1ae3699337259d7883a0af1c72fe782044de19f314a267aa static-auth-secret=YOUR_SECRET_HERE
realm=your-domain.com realm=your-domain.com
no-tcp-relay no-tcp-relay
``` ```
@@ -128,7 +128,7 @@ systemctl start coturn
window.WASTE_CONFIG = { window.WASTE_CONFIG = {
signalURL: 'wss://your-domain.com/ws', signalURL: 'wss://your-domain.com/ws',
turnURL: 'turn:your-domain.com:3478', turnURL: 'turn:your-domain.com:3478',
turnSecret: 'b06c504fd091d23c1ae3699337259d7883a0af1c72fe782044de19f314a267aa', turnSecret: 'YOUR_SECRET_HERE',
} }
``` ```