Show pagesourceOld revisionsBacklinksExport to PDFFold/unfold allBack to top Share via Share via... Twitter LinkedIn Facebook Pinterest Telegram WhatsApp Yammer Reddit TeamsRecent ChangesSend via e-MailPrintPermalink × Table of Contents Package Start Access GUI with another device Config Nginx 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. 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 <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> Nginx 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/02/26 23:12by dan