Hi everyone,
Problem solved with a new fresh install. Unfortunately, the issue came from me.
From my config.js to be more accurate.
My exact config.js was:
var config = {
port: 8080,
adress: "0.0.0.0",
ipWhitelist: ["127.0.0.1", "192.168.1.1/24", "192.168.2.1/24", "192.168.2.100"], // Set [] to allow all IP addresses
// or add a specific IPv4 of 192.168.1.5 :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
// or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
My new and working one is the one Mykle1 gave me:
var config = {
port: 8080,
address: "0.0.0.0",
ipWhitelist: [],
I assume it’s a coma mistake.
Nothing to do with multi web server.
Thank you again for your help.
Best regards