mirror of
https://github.com/hotheadhacker/seedbox-lite.git
synced 2025-09-02 00:51:36 +03:00
fix: Update server listening address to allow external connections
This commit is contained in:
@@ -1591,7 +1591,7 @@ function disableSeedingForCompletedTorrents() {
|
||||
const PORT = config.server.port;
|
||||
const HOST = config.server.host;
|
||||
|
||||
app.listen(PORT, HOST, () => {
|
||||
app.listen(PORT, "0.0.0.0", () => {
|
||||
const serverUrl = `${config.server.protocol}://${HOST}:${PORT}`;
|
||||
console.log(`🌱 Seedbox Lite server running on ${serverUrl}`);
|
||||
console.log(`📱 Frontend URL: ${config.frontend.url}`);
|
||||
|
||||
Reference in New Issue
Block a user