en:desktop:services:syncthing

Syncthing

File synchronization based on syncthing.

Syncthing is an open-source file synchronization client/server application, written in Go, implementing its own, equally free Block Exchange Protocol. All transit communications between syncthing nodes are encrypted using TLS, and all nodes are uniquely identified with cryptographic certificates.

pacman -S syncthing

Change USER to your main user.

systemctl enable --now syncthing@USER.service

Search for <address>127.0.0.1:8384</address> and change it to the following:

nano ~/.config/syncthing/config.xml
<address>0.0.0.0:8384</address>

Check also nginx and ssl.

Change PORT and IP.

server {
        listen PORT;
        server_name IP;

location / {
    proxy_pass http://localhost:8384;
    proxy_set_header X-Real-IP $remote_addr;
  }

}
2022/02/26 22:34 · dan
  • en/desktop/services/syncthing.txt
  • Last modified: 2022/10/24 08:24
  • by 127.0.0.1