Are you giving your raspberry pi an ip address of “0.0.0.0”?
Why?
The address line should be the IP address of your pi.
Having it listen on any interface hasn’t really worked well.
Then the whitelist is an array of ip address. If you leave it empy (ex. []) then all the devices on your network will be able to access your mirror.
This is what mine looks like:
var config = {
address: "192.168.2.48",
port: 8080,
ipWhitelist: [],
This especially makes a difference when using the “Restfull-ish” API. It is necessary to give the address line an ip address :)