WebUI issue, unable to start/stop torrents

Linux specific questions, problems.
Post Reply
azharahs

WebUI issue, unable to start/stop torrents

Post by azharahs »

Greetings, and thanks in advance!

I'm running qbitt on ubuntu maverick 64bit, currently using the latest build from the PPA.

Also, I've set up the apache reverse proxy as described in http://qbforums.shiki.hu/viewtopic.php?f=15&t=90.

I can access the WebUI via apache (in my case 'memoryprime/torrent/') but I can't start/pause any torrents. I can get to the config menu, but that's it. If I use the port, as in 'memoryprime:55556' everything works the way it should.

I'm sure it's something I'm doing wrong, I just can't figure out what.

The proxy code running on the server is as follows:

Code: Select all

  ProxyRequests off
  <Proxy *>
      allow from all
  </Proxy>

  RewriteEngine On
  RewriteRule ^/command/?(.*)$ /torrent/command/$1 [P]

  <Location /torrent/>
        ProxyPass http://localhost:55556/
        ProxyPassReverse http://localhost:55556/
  </Location>
Post Reply