From 600d6308b9f8ee31630a9fc2ef3c032842dd562d Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Fri, 14 Nov 2025 18:54:51 +0100 Subject: [PATCH] Update API URL to api.ronde.vu and simplify ICE config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change API URL from rondevu.xtrdev.workers.dev to api.ronde.vu - Remove TURN servers, use only Google STUN (eliminate errors) - Update README with correct API URL 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- README.md | 2 +- src/App.jsx | 17 +++-------------- 2 files changed, 4 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 54344fb..b59b11b 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ The connection manager handles: ## Server Configuration -This demo connects to: `https://rondevu.xtrdev.workers.dev` +This demo connects to: `https://api.ronde.vu` To use a different server, modify `API_URL` in `src/App.jsx`: diff --git a/src/App.jsx b/src/App.jsx index 355c989..87493e9 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -2,23 +2,12 @@ import React, {useState, useEffect} from 'react'; import {Rondevu} from '@xtr-dev/rondevu-client'; import toast, {Toaster} from 'react-hot-toast'; -const API_URL = 'https://rondevu.xtrdev.workers.dev'; +const API_URL = 'https://api.ronde.vu'; const RTC_CONFIG = { iceServers: [ - { - urls: "stun:stun.relay.metered.ca:80", - }, - { - urls: "turn:standard.relay.metered.ca:80", - username: "e03a51621b4f11ffbed3addd", - credential: "QPjJzPau1Ng5S0dq", - }, - { - urls: "turn:standard.relay.metered.ca:443", - username: "e03a51621b4f11ffbed3addd", - credential: "QPjJzPau1Ng5S0dq", - }, + { urls: 'stun:stun.l.google.com:19302' }, + { urls: 'stun:stun1.l.google.com:19302' } ] };