diff --git a/web/chat.html b/web/chat.html
index 4070142..fc4a821 100644
--- a/web/chat.html
+++ b/web/chat.html
@@ -385,7 +385,18 @@ const PBKDF2_ITER = 600000;
const LOOPBACK = new URLSearchParams(location.search).has('loopback');
const RTC_CONFIG = {
- iceServers: [{ urls: 'stun:stun.l.google.com:19302' }]
+ iceServers: [
+ /* our STUN/TURN on proxy.uncloseai.com — coturn deployed via
+ * git.unturf.com/engineering/unturf/proxy.unturf.com.
+ * credentials are public by design (baked into a static page);
+ * rate-limited via coturn quotas, not via secrecy. */
+ { urls: ['stun:proxy.uncloseai.com:3478', 'stun:stun.l.google.com:19302'] },
+ {
+ urls: 'turn:proxy.uncloseai.com:3478',
+ username: 'zebra',
+ credential: '7a4a2b1c8d9e6f5a'
+ }
+ ]
};
/* ============================================================== *