-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 2.10.0 breaks serveronly mode for remote hosts #1852
Comments
Or i use:
an let commit ed61ac6 unchanged. so you may update the config sample not to use |
according to the doc for magicmirror, if the address field is left empty or not specified, 'localhost' will be used.. NOT '0.0.0.0'
|
according to the inline doc (config.js.sample):
|
I didn't read the file, only the website doc https://github.com/MichMich/MagicMirror#general see the address field |
i saw it after your comment :-D To be pedantic the "" case is not explained in "README.md" (but in config/config.js.sample) and an empty string should not behave like null in the Default case (as described in the docs). For security reasons i would totaly accept to change the behaviour and force the user to enter "0.0.0.0". Can you commit a patch either correcting
because i am a total fool in github... |
I will teach you on the master repo, on github, upper right, click fork. edit the files. git status will show they changed git commit -m " some message" once commit is done, now YOU have contributed to the MM project |
can u add a line to the changelog file? I gave the wrong filename.. CHANGELOG.md |
force declaration of public ip adress in config file (ISSUE #1852)
Fix merged. |
Platform:
Raspberry Pi 4 as Server
Raspberry Pi Zero as Display
Node Version:
v13.5.0
MagicMirror Version:
2.10.0
Description:
I run MM² serveronly on a headless RPi4.
After the upgrade to version 2.10.0 the display (on remote host) was unable to connect to the server.
The Server itself could show the MagicMirror when used by https://localhost:8080. NOT if used by ip adess 192.168.0.12:80
Configuration:
Steps to Reproduce:
see description
Additional Notes:
I found a Workaround by reverting commit ed61ac6 and change line 27 back to:
server.listen(port, config.address ? config.address : null);
The text was updated successfully, but these errors were encountered: