Benutzer-Werkzeuge

Webseiten-Werkzeuge


Action disabled: source
linux:transmission

Lighttpd/Transmission

Summary

Transmission is a torrent client with an integrated webinterface with webserver.

Main

I wanted to call the interface of transmission over lighttpd but therefore a special configuration is needed because the webpath is hardcoded in transmission.
Here is the configuration I've set up.

  url.rewrite-once += (
                 "^/transmission/upload(.*)"     => "/transmission/upload$1",
                 "^/transmission/rpc(.*)"        => "/transmission/rpc$1",
                 "^/(.*)$"                       => "/transmission/web/$1"
  )
  proxy.server = ( "" => (("host" => "127.0.0.1", "port" => <port>)) )

The port can be set in /etc/conf.d/transmissiond.

  TRANS_ARGS="-p <port>"

Comments



O N L K F

Linkbacks

Sende manuelle Trackbacks an folgende URL:https://www.andrwe.org/lib/plugins/linkback/exe/trackback.php/linux:transmission
linux/transmission.txt · Zuletzt geändert: 2010/11/24 21:28 (Externe Bearbeitung)