Skip to content

played around with file synchronization tool syncthing v0.10.1

I played around with a file synchronisation tool called syncthing v0.10.1 and here is the outcome.

How To

enable gui to outside

change

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

to (enable tls is optional)

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

You should add user name and password for gui authentication as soon as possbile.

change default directory

change

<folder id="default" path="/home/<user>/Sync" ro="false" rescanIntervalS="60" ignorePerms="false">

to

<folder id="default" path="/home/<user>/<your folder path>" ro="false" rescanIntervalS="60" ignorePerms="false">

excluding files

  • put a .stignore file into the root of your sharing directory

patterns

  • // - comment (no effect)
  • - regular file name or file paths
      • zero or more character but not directory separator
  • ** - zero or more character with directory separator
  • ? - single character that is not the directory separator
  • / - matches in current directory only
  • #include - load patterns from a file
  • ! - negates the pattern (files that are not ignored)

Trackbacks

No Trackbacks

Comments

Display comments as Linear | Threaded

No comments

The author does not allow comments to this entry

Add Comment

E-Mail addresses will not be displayed and will only be used for E-Mail notifications.
To leave a comment you must approve it via e-mail, which will be sent to your address after submission.

To prevent automated Bots from commentspamming, please enter the string you see in the image below in the appropriate input box. Your comment will only be submitted if the strings match. Please ensure that your browser supports and accepts cookies, or your comment cannot be verified correctly.
CAPTCHA

Markdown format allowed
Form options