Is it possible to set up Syncthing without browser support?

Hi, I am trying to set up Synchthing to work with a server that doesn’t have browser support. Is there a way to set this up?

Do you have SSH access to the server? It’s probably brutal and frowned upon, but I have setup countless Syncthing instances by port-forwarding port 8384 so I can use my own local laptop browser.

For example, when setting up Syncthing on my remote server, I would start the syncthing binary there over ssh.

Then:

ssh -L8888:localhost:8384 myserver

Then visit http://localhost:8888 - which would show me the remote syncthing web-admin UI. Works for me.

3 Likes

Yes. You will typically install syncthing in whatever way (XYZ package manager, standalone binary…), then manually edit syncthing’s configuration to allow the GUI to be accessed from a remote computer (see The GUI Listen Address — Syncthing documentation, Syncthing Configuration — Syncthing documentation). You can then use another computer (that has a browser) to navigate to syncthing’s GUI on the server and continue with the usual getting started setup from there.

1 Like

No, that’s actually a secure and good way to access services remotely. It may be uncomfortable for some users, but it’s common practice.

1 Like

Thanks, I do have ssh. I will try what you suggest.

2 Likes

I’ll look into this, thanks.

1 Like

This is one of the best way to check on admin interfaces, infrequently. Very secure too.