nxmehta

Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by nxmehta

  1. Months go by and still no luck. Still stuck with this dumb "/gui/" (talk of a non-informative url...)

     

    At least, please consider providing a configuration option for that base directory (e.g. in the .conf file, under the webui section), something along these lines:

    "webui" :        {                "listen" : "127.0.0.1:8888",                "login" : "username",                "password" : "userpassword",                "basedir" : "btsyncGUI"        }

    so that the webui becomes accessible (and reverse-proxyable) at "http://127.0.0.1:8888/btsyncGUI/"

     

    Shouldn't be rocket science...

     

    I posted instructions for making this work using nginx here: http://forum.bittorrent.com/topic/20710-nginx-as-reverse-proxy-for-the-config-page/#entry66870

     

    It's been working great for me.

  2. Well, tried a little harder and it sorta works. This was the magic incantation that worked for me:


    RewriteRule ^/btsync$ /gui/ [R]
    RewriteRule ^/btsync/ /gui/ [R]
    RewriteRule ^/gui$ /gui/ [R]
    ProxyPass /gui/ http://localhost:8888/gui/
    <Location /gui/>
    ProxyPassReverse http://localhost:8888/gui/
    Order Allow,Deny
    Allow from All
    </Location>

    It redirects /btsync to /gui but at least it works. Hope that helps someone out there.