Advertisement
Guest User

Untitled

a guest
May 4th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. {
  2. "device_name": "Seedbox",
  3. "listening_port" : 0, // 0 - randomize port
  4.  
  5. /* storage_path dir contains auxilliary app files
  6. if no storage_path field: .sync dir created in the directory
  7. where binary is located.
  8. otherwise user-defined directory will be used
  9. */
  10. "storage_path" : "/home/XXXXXX/.btsync",
  11.  
  12. // uncomment next line if you want to set location of pid file
  13. // "pid_file" : "/var/run/btsync/btsync.pid",
  14.  
  15.  
  16. "check_for_updates" : true,
  17. "use_upnp" : true, // use UPnP for port mapping
  18.  
  19.  
  20. /* limits in kB/s
  21. 0 - no limit
  22. */
  23. "download_limit" : 0,
  24. "upload_limit" : 0,
  25.  
  26. /* remove "listen" field to disable WebUI
  27. remove "login" and "password" fields to disable credentials check
  28. */
  29. "webui" :
  30. {
  31. "listen" : "0.0.0.0:12546",
  32. "login" : "XXXXXX",
  33. "password" : "XXXXXX"
  34. }
  35.  
  36. /* !!! if you set shared folders in config file WebUI will be DISABLED !!!
  37. shared directories specified in config file
  38. override the folders previously added from WebUI.
  39. */
  40. /*
  41. ,
  42. "shared_folders" :
  43. [
  44. {
  45. // use --generate-secret in command line to create new secret
  46. "secret" : "MY_SECRET_1", // * required field
  47. "dir" : "/home/user/bittorrent/sync_test", // * required field
  48.  
  49. // use relay server when direct connection fails
  50. "use_relay_server" : true,
  51. "use_tracker" : true,
  52. "use_dht" : false,
  53. "search_lan" : true,
  54. // enable SyncArchive to store files deleted on remote devices
  55. "use_sync_trash" : true,
  56. // restore modified files to original version, ONLY for Read-Only folders
  57. // "overwrite_changes" : false,
  58. // specify hosts to attempt connection without additional search
  59. "known_hosts" :
  60. [
  61. "192.168.1.2:44444"
  62. ]
  63. }
  64. ]
  65. */
  66.  
  67. // Advanced preferences can be added to config file.
  68. // Info is available in BitTorrent Sync User Guide.
  69.  
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement