diff --git a/.github/README.md b/.github/README.md index 4dbe8144..593021cb 100644 --- a/.github/README.md +++ b/.github/README.md @@ -125,7 +125,7 @@ Run the following command: If the server started successfully, you should get the below output on the console: -`$ Server is up and running, please open the UI at http://localhost:3000` +`$ Server is up and running, please open the UI at http://localhost:3000 or your proxy configured url.` #### Optional: Running RTL as a service (Rpi or Linux platform users) In case you are running a headless Rpi or a Linux node, you can configure RTL as a service. diff --git a/.github/docs/Core_lightning_setup.md b/.github/docs/Core_lightning_setup.md index 9eb5b52b..ea1e8c39 100644 --- a/.github/docs/Core_lightning_setup.md +++ b/.github/docs/Core_lightning_setup.md @@ -94,7 +94,7 @@ Run the following command: If the server started successfully, you should get the below output on the console: -`$ Server is up and running, please open the UI at http://localhost:3000` +`$ Server is up and running, please open the UI at http://localhost:3000 or your proxy configured url.` Open your browser at the following address: http://localhost:3000 to access the RTL app. diff --git a/.github/docs/Eclair_setup.md b/.github/docs/Eclair_setup.md index 940c6a60..11bfc0c8 100644 --- a/.github/docs/Eclair_setup.md +++ b/.github/docs/Eclair_setup.md @@ -89,7 +89,7 @@ Run the following command: If the server started successfully, you should get the below output on the console: -`$ Server is up and running, please open the UI at http://localhost:3000` +`$ Server is up and running, please open the UI at http://localhost:3000 or your proxy configured url.` Open your browser at the following address: http://localhost:3000 to access the RTL app. diff --git a/rtl.js b/rtl.js index 6fcdecac..a88a1add 100644 --- a/rtl.js +++ b/rtl.js @@ -35,7 +35,7 @@ const onError = (error) => { }; const onListening = () => { - logger.log({ level: 'INFO', fileName: 'RTL', msg: 'Server is up and running, please open the UI at http://' + (common.host ? common.host : 'localhost') + ':' + common.port }); + logger.log({ level: 'INFO', fileName: 'RTL', msg: 'Server is up and running, please open the UI at http://' + (common.host ? common.host : 'localhost') + ':' + common.port + ' or your proxy configured url' }); }; let server = http.createServer(app.getApp());