Can anybody help me with local server config?

Hi,
can anybody help me with local server config?
I have installed local Blynk server on same RPi as Node.js Project (project-e1), but experiencing connetion problems. Besides below described I have no connection in mobile app. I didnt use SSL certificates.

I didnt get Autorhization after running index.js
terminal====================
pi@rasp3b:~/project-e1 $ node index.js

OnOff mode
Connecting to TCP: 192.168.xxx.xxx 8440
Connected
Connecting to TCP: 192.168.xxx.xxx 8440
Connected
… and repeating
terminal====================

index.js include this
index.js ==========================
var Blynk = require(‘blynk-library’);

var AUTH = ‘I used authtoken - generated by mobile Blynk app’;

var blynk = new Blynk.Blynk(AUTH, options = { connector : new Blynk.TcpClient( options = { addr:“192.168.xxx.xxx”, port:8440 } )
});
var v1 = new blynk.VirtualPin(1);
var v9 = new blynk.VirtualPin(9);

v1.on(‘write’, function(param) {
console.log(‘V1:’, param[0]);
});

v9.on(‘read’, function() {
v9.write(new Date().getSeconds());
});
index.js ==========================

Port 8440 is the hardware mqtt port. Port 8080 should work for your application.
Also check the “server.properties”:

#hardware mqtt port
hardware.mqtt.port=8440

#hardware ssl port
hardware.ssl.port=8441

#http, plain web sockets and plain hardware port
http.port=8080

#if this property is true csv download url will use port 80 and will ignore http.port
force.port.80.for.csv=false

#if this property is true redirect_command will use 80 port and will ignore http.port
force.port.80.for.redirect=true

#secured https, web sockets and app port
https.port=9443
[...]

Thanks! I will check it.

Thanks once again. Its working now.