diff --git a/core/servers/content/web.js b/core/servers/content/web.js index 1a09aace..04b9ccdd 100644 --- a/core/servers/content/web.js +++ b/core/servers/content/web.js @@ -138,7 +138,7 @@ exports.getModule = class WebServerModule extends ServerModule { return nextService(Errors.Invalid(`Invalid port: ${config.contentServers.web[service].port}`)); } - this[name].listen(port, err => { + this[name].listen(port, config.contentServers.web[service].address, err => { return nextService(err); }); } else {