de:server:services:syncthing

This translation is older than the original page and might be outdated. See what has changed.

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>

Ändere PORT und IP.

server {
        listen PORT;
        server_name IP;

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

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