fix: route online backups through downloader host

Use the existing TLS-enabled downloader.24-music.de host under a dedicated reverse-proxy path so the backup API can be activated without introducing an unmanaged DNS dependency.
This commit is contained in:
Sucukdeluxe 2026-08-07 18:32:12 +02:00
parent 6e44e63167
commit 0bd24f346d

View File

@ -38,7 +38,7 @@ export const SPEED_WINDOW_SECONDS = 1;
export const CLIPBOARD_POLL_INTERVAL_MS = 2000;
export const DEFAULT_UPDATE_REPO = "Sucukdeluxe/multi-debrid-downloader";
export const ONLINE_BACKUP_API_URL = "https://backup.24-music.de";
export const ONLINE_BACKUP_API_URL = "https://downloader.24-music.de/backup-api";
export function defaultSettings(): AppSettings {
const baseDir = path.join(os.homedir(), "Downloads", "RealDebrid");