Skip to content

Commit 5649d7c

Browse files
notd5aclaude
andcommitted
fix: use HTTP for remote signaling server (no TLS configured)
The remote server at synced-relay.duckdns.org:9876 serves plain HTTP. The previous https:// URL caused "failed to fetch" on room creation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0fcdd72 commit 5649d7c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const MODE_KEY = "synced_server_mode";
1414
const URL_KEY = "synced_signaling_url";
1515

1616
/** Default remote signaling server — always used for remote mode. */
17-
export const DEFAULT_REMOTE_URL = "https://synced-relay.duckdns.org:9876";
17+
export const DEFAULT_REMOTE_URL = "http://synced-relay.duckdns.org:9876";
1818

1919
export function getServerMode(): ServerMode {
2020
const stored = localStorage.getItem(MODE_KEY);

0 commit comments

Comments
 (0)