====== Syncthing ====== File synchronization based on syncthing. [[https://syncthing.net/|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. ===== Package ===== pacman -S syncthing ===== Start ===== Change ''USER'' to your main user. systemctl enable --now syncthing@USER.service ===== Access GUI with another device ===== ==== Config ==== Search for ''
127.0.0.1:8384
'' and change it to the following: nano ~/.config/syncthing/config.xml
0.0.0.0:8384
==== Nginx ==== Check also [[/en/server/services/nginx]] and [[/en/server/services/ssl|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; } }