Raspberry Pi doesn't connect to local server

Hi guys,
I have set up a local server on a Windows PC and start Blynk on the Raspberry Pi with blynk.js "authToken".
I have changed the IP in blynk-node.js.(only one change)
It looks like that now:

      xports.SslClient = function(options) {
      var self = this;
      events.EventEmitter.call(this);
      var options = options || {};
      var certs_path = options.certs_path || default_certs_path;
      self.addr = options.addr || "192.168.178.26";
      self.port = options.port || 8441;
      // These are necessary only if using the client certificate authentication
      self.key  = options.key  || null;
      self.cert = options.cert || null;
      self.pass = options.pass || null;
      // This is necessary only if the server uses the self-signed certificate
      self.ca   = options.ca   || [ path.join(certs_path, 'server.crt') ];

When I run blynk.js it gives me this output:

OnOff mode Connecting to: 192.168.178.26 8441 SSL authorization... SSL not authorized...

and the blynk.log on the server doesn’t change.

Have I written my local IP in the right place or do I have to edit other scripts too?
Any Ideas how to fix this problem?

Thanks!

BTW: Blynk is awesome!! :slight_smile:

Are you connecting to the SSL port on the Windows server or the regular port?

Is should be the SSL port (8441).
When I change the self.port = options.port || to the non-SSL (8442) I get this output:

OnOff mode Connecting to: 192.168.178.26 8442 SSL authorization... events.js:87 throw Error('Uncaught, unspecified "error" event.'); ^ Error: Uncaught, unspecified "error" event. at Error (native) at emit (events.js:87:13) at Blynk.error (/usr/local/lib/node_modules/blynk-library/blynk.js:574:8) at null.<anonymous> (/usr/local/lib/node_modules/blynk-library/blynk.js:537:48) at emit (events.js:107:17) at TLSSocket.<anonymous> (/usr/local/lib/node_modules/blynk-library/blynk-node.js:199:16) at TLSSocket.emit (events.js:107:17) at TLSSocket.onHangUp (_tls_wrap.js:964:16) at TLSSocket.g (events.js:199:16) at TLSSocket.emit (events.js:129:20)

and in the blynk.log a message: User not logged. /192.168.178.40:44208. Closing.

However I’m able to connect from another Windows PC via blynk-ser.bat without problems.

Exact same problem here!

Solutions anyone?