Webinterface address is not right
endolith opened this issue · 1 comments
endolith commented
if you have your GUI Listen Address set to http://0.0.0.0:8080/, then when you click "Open Webinterface" on Syncthingtray, it opens a browser and actually tries to open the address http://0.0.0.0:8080/, which does not work. It should open the browser at http://127.0.0.1:8080/.
uok commented
listen address 0.0.0.0 means that every computer can access the web GUI,
GUI address is the IP of the computer that is running Syncthing
examples
- LAN access
- Computer 1 (192.168.0.1) - runs Syncthing
- listen: 0.0.0.0:8080
- Tray: 192.168.0.1:8080 (or 127.0.0.1:8080)
- GUI: http://192.168.0.1:8080 (or http://127.0.0.1:8080)
- Computer 2 (192.168.0.10), Computer 3 (192.168.0.11), etc.
- can access Syncthing WebGUI via http://192.168.0.1:8080
- Local access
- Computer 1 (192.168.0.1) - runs Syncthing
- listen: 127.0.0.1:8080
- Tray: 127.0.0.1:8080
- GUI: http://127.0.0.1:8080
- Computer 2 (192.168.0.10), Computer 3 (192.168.0.11), etc.
- can not access Syncthing WebGUI via http://192.168.0.1:8080