diff options
author | Karel Kočí <cynerd@email.cz> | 2021-08-13 08:04:36 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2021-08-13 08:04:36 +0200 |
commit | 2849c76c23146f651a70cdf0a70e6e98d4ea8ecf (patch) | |
tree | 113d180a14c1647194076fdce8ecc7c75a3f23c5 /syncthing/files/etc/config | |
parent | a0be567986b2b6d21df0f7530bcc732e8ee5576f (diff) | |
download | openwrt-personal-pkgs-2849c76c23146f651a70cdf0a70e6e98d4ea8ecf.tar.gz openwrt-personal-pkgs-2849c76c23146f651a70cdf0a70e6e98d4ea8ecf.tar.bz2 openwrt-personal-pkgs-2849c76c23146f651a70cdf0a70e6e98d4ea8ecf.zip |
syncthing: add new version
Diffstat (limited to 'syncthing/files/etc/config')
-rw-r--r-- | syncthing/files/etc/config/syncthing | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/syncthing/files/etc/config/syncthing b/syncthing/files/etc/config/syncthing new file mode 100644 index 0000000..291675d --- /dev/null +++ b/syncthing/files/etc/config/syncthing @@ -0,0 +1,26 @@ + +config syncthing 'syncthing' + option enabled '0' + + option gui_address 'http://127.0.0.1:8384' + + # Use internal flash for evaluation purpouses. Use external storage + # for production. + # This filesystem must either support ownership/attributes or + # be readable/writable by the user specified in + # 'option user'. + # Consult syslog if things go wrong. + option home '/etc/syncthing' + + # Changes to "niceness"/macprocs are not picked up by "reload_config" + # nor by "restart": the service has to be stopped/started + # for those to take effect + option nice '19' + + # 0 to match the number of CPUs (default) + # >0 to explicitly specify concurrency + option macprocs '0' + + # Running as 'root' is possible, but not recommended + option user 'syncthing' + |