Hi MagicMirror users,
I have an issue.
I can’t access to my brand new MagicMirror (other than localhost) despite having a proper IpWhiteList configuration.
I’m building a small server on a tiny computer running Debian 9 (Stretch). The project is using it to control my home (Home Assistant), run MagicMirror in server mode, and maybe do some facial recognition later…
I installed Home Assistant with no problem and can access to the web panel from another computer within my home network (so, fine… Everything is ok).
Then, I installed and configured MagicMirror. It works without problem on my localhost.
But unfortunately, I cannot access it elsewere using the IP of my server 192.168.X.X:8080.
My IpWhiteList config is:
var config = {
port: 8080,
ipWhitelist: [],
The CLI gives this:
XXX@serveur:~/MagicMirror$ npm start
> magicmirror@2.1.3 start /home/XXX/MagicMirror
> sh run-start.sh
Gtk-Message: Failed to load module "canberra-gtk-module"
Starting MagicMirror: v2.1.3
Loading config ...
Loading module helpers ...
No helper found for module: alert.
Initializing new module helper ...
Module helper loaded: updatenotification
No helper found for module: clock.
Initializing new module helper ...
Module helper loaded: calendar
Initializing new module helper ...
Module helper loaded: newsfeed
Initializing new module helper ...
Module helper loaded: MMM-Paris-RATP-PG
Initializing new module helper ...
Module helper loaded: MMM-cryptocurrency
Initializing new module helper ...
Module helper loaded: MMM-WunderGround
Initializing new module helper ...
Module helper loaded: MMM-Remote-Control
All module helpers loaded.
Starting server on port 8080 ...
You're using a full whitelist configuration to allow for all IPs
Server started ...
Connecting socket for: updatenotification
Connecting socket for: calendar
Starting node helper for: calendar
Connecting socket for: newsfeed
Starting module: newsfeed
Connecting socket for: MMM-Paris-RATP-PG
Connecting socket for: MMM-cryptocurrency
Cryptocurrency module loaded!
Connecting socket for: MMM-WunderGround
MMM-WunderGround helper started ...
Connecting socket for: MMM-Remote-Control
Starting node helper for: MMM-Remote-Control
Sockets connected & modules started ...
Launching application.
Create new calendar fetcher for url: https://calendar.google.com/calendar/XXX.ics - Interval: 300000
Create new news fetcher for url: http://www.lemonde.fr/rss/une.xml - Interval: 300000
GET_WUNDERGROUND
And chrome gives me this:
Ce site est inaccessible
192.168.X.X n'autorise pas la connexion.
Effectuez une recherche Google sur 192 168 8080.
ERR_CONNECTION_REFUSED
I don’t have any deny access on the CLI or another error message.
Do you have a clue to help me out?
Thank you all