koegs

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by koegs

  1. Does anybody have a working nginx reverse proxy config for the latest version? This one does not work anymore:
  2. With Version 1.1.69 this does not work anymore.
  3. Good hint! I changed it to "location ~ ^/gui" and it works, maybe with rewrite i can use a different url...
  4. Hi, i just started using btsync and already deployed it on several systems including some "servers". As the btsync config page has not authorization mechanism, i have thought i could use the already installed nginx webserver for that and use it as an reverse proxy: /etc/nginx/sites-enabled/default: ... location ~ ^/btsync($|./*) { proxy_pass http://127.0.0.1:8888; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } ... Almost the same lines work for other services, but not for btsync, i only get: "invalid request" Any ideas?