Sign inSign up

siomiz/sync

By siomiz

Updated almost 11 years ago

BitTorrent Sync with Web UI

Image
0

830

siomiz/sync repository overview

(placeholder)

directory_root is set to /storage, which is a volume.

settings are stored at /opt/btsync/.sync, which is also a volume. Keep this volume separate for auth/key persistence.

for me, using nginx to serve the Web UI at a non-root URL over SSL, the following nginx config worked:

location /btsync/ {
  rewrite /btsync/ /btsync/gui/ redirect;
}
location /gui/ {
  rewrite /gui(.*) /btsync/gui$1 last;
}
location /btsync/gui/ {
  proxy_pass http://localhost:8888/gui/;
}

Tag summary

Content type

Image

Digest

sha256:0a724c516

Size

49.3 MB

Last updated

almost 11 years ago

docker pull siomiz/sync