@Jopyth I double checked everything and have used the same URL the entire time - http://10.0.0.251:8080/remote.html
I am only making changes to the ipwhitelist so if i have my config file like this, i get “this device is not allowed to access your mirror…”
var config = {
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ff:10.0.0.68"], // Set [] to allow all IP addresses.
language: "en",
timeFormat: 12,
units: "Imperial",
If i change the IPwhitelist to the following, i get “cannot GET /remote.html”
var config = {
port: 8080,
ipWhitelist: [], // Set [] to allow all IP addresses.
language: "en",
timeFormat: 12,
units: "Imperial",