en:server:services:syncthing

This is an old revision of the document!


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>

Change PORT and IP.

server {
        listen PORT;
        server_name IP;

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

}
  • en/server/services/syncthing.1645914883.txt.gz
  • Last modified: 2022/10/24 08:24
  • (external edit)