de:desktop:services:syncthing

This is an old revision of the document!


Syncthing

Dateisynchronisation mit Syncthing.

Syncthing ist eine in Go geschriebene Open-Source-Anwendung zur Dateisynchronisation, die ihr eigenes, ebenfalls freies Block Exchange Protocol implementiert. Die gesamte Transitkommunikation zwischen den Syncthing-Knoten wird mit TLS verschlüsselt, und alle Knoten werden durch kryptographische Zertifikate eindeutig identifiziert.

pacman -S syncthing

ÄndereUSER zu Hauptbenutzer.

systemctl enable --now syncthing@USER.service

Suche nach <address>127.0.0.1:8384</address> und ändere es wie folgt:

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

Siehe auch nginx und ssl.

Ändere PORT und IP.

server {
        listen PORT;
        server_name IP;

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

}
2022/03/04 19:47 · dodi
  • de/desktop/services/syncthing.1646424569.txt.gz
  • Last modified: 2022/10/24 08:24
  • (external edit)