Skip to content

Commit

Permalink
PC: changed default port
Browse files Browse the repository at this point in the history
  • Loading branch information
antonic901 committed May 1, 2022
1 parent fd3de55 commit 9a9e64d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend-for-pc/xbox-classic-streamer/backend/bin.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var STATIC_OPTIONS = { maxAge: 3600000 };
process.title = 'xbox-streaming-server';

var host = process.env.HOST || network.getHostAddress();
var port = process.env.PORT || 9006;
var port = process.env.PORT || 9005;

if (!configuration.readConfigurationFile()) {
logger.log('NOTICE', 'Configuration file is not found. Creating one...');
Expand Down Expand Up @@ -51,4 +51,4 @@ server.listen(port, host).on('error', function (e) {
logger.log('NOTICE', 'API is successfully started. Listening on http://' + host + ':' + port);
});

module.exports = {host, port}
module.exports = {host, port}

0 comments on commit 9a9e64d

Please sign in to comment.