roster-server 1.4.8 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -201,7 +201,7 @@ class Roster {
201
201
 
202
202
  // Primero iniciar el servidor HTTPS
203
203
  httpsServer.listen(this.port, '0.0.0.0', () => {
204
- console.log('ℹ️ HTTPS server listening on port 443');
204
+ console.log('ℹ️ HTTPS server listening on port ' + this.port);
205
205
 
206
206
  // Después iniciar el servidor HTTP
207
207
  httpServer.listen(80, '0.0.0.0', () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roster-server",
3
- "version": "1.4.8",
3
+ "version": "1.5.0",
4
4
  "description": "👾 RosterServer - A domain host router to host multiple HTTPS.",
5
5
  "main": "index.js",
6
6
  "scripts": {