fix: Update server listening address to allow external connections

This commit is contained in:
Salman Qureshi
2025-08-11 18:40:18 +05:30
parent cf9332144d
commit 41af411966

View File

@@ -1591,7 +1591,7 @@ function disableSeedingForCompletedTorrents() {
const PORT = config.server.port; const PORT = config.server.port;
const HOST = config.server.host; const HOST = config.server.host;
app.listen(PORT, HOST, () => { app.listen(PORT, "0.0.0.0", () => {
const serverUrl = `${config.server.protocol}://${HOST}:${PORT}`; const serverUrl = `${config.server.protocol}://${HOST}:${PORT}`;
console.log(`🌱 Seedbox Lite server running on ${serverUrl}`); console.log(`🌱 Seedbox Lite server running on ${serverUrl}`);
console.log(`📱 Frontend URL: ${config.frontend.url}`); console.log(`📱 Frontend URL: ${config.frontend.url}`);