Syncthing

インストール

# Add the release PGP keys:
# Add the "stable" channel to your APT sources:

curl -s https://syncthing.net/release-key.txt | sudo apt-key add -
echo "deb https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list
sudo apt-get update
sudo apt-get install syncthing

nano ~/.config/syncthing/config.xml

リモート

<gui enabled="true" tls="false">
    <address>127.0.0.1:8080</address>
</gui>

>>>

<gui enabled="true" tls="false">
    <address>0.0.0.0:8080</address>
</gui>
次へ