ESP-32 Development Board - Login Timeout

Esp32 devkit v1 - WIFI (Board)
Local server - 0.38.2
Blynk Library version - v0.5.3 on ESP32

Blynk does not connect to the server.
Message “login timeout”

#include <Arduino.h>
#define BLYNK_PRINT Serial
#define BLYNK_DEBUG

#include <WiFi.h>
#include <WiFiClient.h>
#include <BlynkSimpleEsp32.h>
char auth[] = "xxxxxxxxxxxxxxxxxxxxxxxxxxxx";
char ssid[] = "xxxx";
char pass[] = "xxxx";
void setup()
{
  Serial.begin(9600);
Blynk.begin(auth, ssid, pass, IPAddress(xxx,xxx,xxx,xxx), 9440);
//Port configured. Firewall configured.
}
void loop()
{
  Blynk.run();
}

Debug message displayed on monitor

[4601] Connected to WiFi
[4601] IP: 192.168.xxx.xx
[4602]
    ___  __          __
   / _ )/ /_ _____  / /__
  / _  / / // / _ \/  '_/
 /____/_/\_, /_//_/_/\_\
        /___/ v0.5.3 on ESP32

  Give Blynk a Github star! => https://github.com/blynkkk/blynk-library

[4754] Connecting to xxx.xxx.xxx.xxx
[4822] <[02|00|01|00] xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
[6851] Login timeout
[9851] Connecting to xxx.xxx.xxx.xxx
[9878] <[02|00|01|00] xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
[14880] Connecting to xxx.xxx.xxx.xxx
[14907] <[02|00|01|00] xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
[19909] Connecting to xxx.xxx.xxx.xxx
[19932] <[02|00|01|00] xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
[21934] Login timeout
[24934] Connecting to xxx.xxx.xxx.xxx
[24958] <[02|00|01|00] xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
[26960] Login timeout
[29960] Connecting to xxx.xxx.xxx.xxx
[29984] <[02|00|01|00] xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
[31986] Login timeout
[34986] Connecting to xxx.xxx.xxx.xxx
[35009] <[02|00|01|00] xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
[37011] Login timeout
[40011] Connecting to xxx.xxx.xxx.xxx
[40037] <[02|00|01|00] xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
[45040] Connecting to xxx.xxx.xxx.xxx
[45065] <[02|00|01|00] xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
[50067] Connecting to xxx.xxx.xxx.xxx
[50093] <[02|00|01|00] xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
[52095] Login timeout
[55095] Connecting to xxx.xxx.xxx.xxx
[55122] <[02|00|01|00] xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
[57124] Login timeout

**server.properties**

hardware.mqtt.port=9440
hardware.ssl.port=9441
http.port=8080
force.port.80.for.csv=false
force.port.80.for.redirect=true
https.port=9443
listen.address=
server.ssl.cert=
server.ssl.key=
server.ssl.key.pass=
data.folder=
logs.folder=./logs
log.level=info
user.devices.limit=25
user.tags.limit=100
user.dashboard.max.limit=100
user.widget.max.size.limit=20
user.message.quota.limit=100
notifications.queue.limit=2000
blocking.processor.thread.pool.limit=6
notifications.frequency.user.quota.limit=5
webhooks.frequency.user.quota.limit=1000
webhooks.response.size.limit=96
user.profile.max.size=128
terminal.strings.pool.size=25
map.strings.pool.size=25
lcd.strings.pool.size=6
table.rows.pool.size=100
profile.save.worker.period=60000
stats.print.worker.period=60000
web.request.max.size=524288
csv.export.data.points.max=43200
hard.socket.idle.timeout=15
rename.old.reporting.files=true
enable.db=false
enable.raw.db.data.store=false
async.logger.ring.buffer.size=2048
allow.reading.widget.without.active.app=false
allow.store.ip=false
initial.energy=100000
admin.rootPath=/admin
product.name=Blynk
net.interface=eth
allowed.administrator.ips=0.0.0.0/0,::/0
admin.email=xxxxxxxx@xxxxxxx.xxxx
admin.pass=xxxxxxxxx
allowed.users.list=

Proper hardware (HTTP) port for Local Server is 8080

https://github.com/blynkkk/blynk-server

Tanks