Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dxspider-proxy/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ app.use(express.json());
const CONFIG = {
// DX Spider nodes to try (in order)
nodes: [
{ host: 'dxspider.co.uk', port: 7300, name: 'DX Spider UK (G6NHU)' },
{ host: 'dxc.nc7j.com', port: 7373, name: 'NC7J' },
{ host: 'dxc.ai9t.com', port: 7373, name: 'AI9T' },
{ host: 'dxc.w6cua.org', port: 7300, name: 'W6CUA' },
{ host: 'dxspider.co.uk', port: 7300, name: 'DX Spider UK (G6NHU)' },
],
// Callsign with SSID - use env var as-is, or default to OPENHAMCLOCK-56
// Set CALLSIGN=YOURCALL-56 for production, CALLSIGN=YOURCALL-57 for staging
callsign: process.env.CALLSIGN || 'OPENHAMCLOCK-56',
callsign: process.env.CALLSIGN?.trim() || 'OPENHAMCLOCK-56',
spotRetentionMs: 30 * 60 * 1000, // 30 minutes
reconnectDelayMs: 10000, // 10 seconds between reconnect attempts
maxReconnectAttempts: 3,
Expand Down
Loading
Loading