SyncthingTray icon indicating copy to clipboard operation
SyncthingTray copied to clipboard

Webinterface address is not right

Open endolith opened this issue 11 years ago • 1 comments

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/.

endolith avatar Aug 17 '14 00:08 endolith

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

  1. 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
  1. 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

uok avatar Nov 04 '14 13:11 uok