Skip to content

Instantly share code, notes, and snippets.

@mendelgusmao
Last active March 28, 2021 08:08
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save mendelgusmao/5823291 to your computer and use it in GitHub Desktop.
Save mendelgusmao/5823291 to your computer and use it in GitHub Desktop.
BTSync / BitTorrent Sync behind nginx
# take one
# subdirectory (one server, multiple services)
location /btsync/ {
rewrite ^/btsync/gui(.*) /btsync$1 last;
proxy_pass http://127.0.0.1:8888/gui/;
proxy_redirect /gui/ /btsync/;
proxy_buffering off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
# standalone (one server, one service)
location / {
proxy_pass http://127.0.0.1:8888/;
proxy_buffering off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
@mendelgusmao
Copy link
Author

Warning: broken since 1.1.69!

@depraved22
Copy link

I changed mine to just use the /gui/ as the root and it works fine:

    # btsync
location /gui/ {
            proxy_pass http://192.168.1.31:38888/gui/;
        proxy_buffering off;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
    }

@SJ50
Copy link

SJ50 commented Aug 15, 2015

I added

location /btsync/ {
         rewrite ^/btsync/gui(.*) /btsync$1 last;
         proxy_pass http://127.0.0.1:8888/gui/;
         proxy_redirect /gui/ /btsync/;
         proxy_buffering off;
         proxy_set_header Host $host;
         proxy_set_header X-Real-IP $remote_addr;
}

location /gui/ {
        proxy_pass http://127.0.0.1:8888/gui/;
        proxy_buffering off;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
    }

I can open btsync with http://ip:port/btsync

@IcedMango
Copy link

Ver 2.7.2 work with

location /btsync/ {
    proxy_pass http://127.0.0.1:8888/gui/;
    proxy_buffering off;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment