Skip to content
This repository was archived by the owner on May 7, 2025. It is now read-only.

Commit ade9df7

Browse files
committed
Switch port to 443
1 parent 8e737f6 commit ade9df7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

blynk-node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ exports.SslClient = function(options) {
132132
var options = options || {};
133133
var certs_path = options.certs_path || default_certs_path;
134134
self.addr = options.addr || "blynk-cloud.com";
135-
self.port = options.port || 8441;
135+
self.port = options.port || 443;
136136
// These are necessary only if using the client certificate authentication
137137
self.key = options.key || null;
138138
self.cert = options.cert || null;

examples/nodejs/client-ssl-local.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var Blynk = require('blynk-library');
55
var AUTH = 'YOUR_AUTH_TOKEN';
66

77
var blynk = new Blynk.Blynk(AUTH,
8-
options= { addr:"127.0.0.1", port:8441 }
8+
options= { addr:"127.0.0.1", port:9443 }
99
);
1010

1111
var v1 = new blynk.VirtualPin(1);

0 commit comments

Comments
 (0)