#Redirect from /transmission to /transmission/web
url.rewrite-once += ( "^/transmission[/]?$" => "/transmission/web" )
$HTTP["url"] =~ "^/transmission/" {
  #Serve static files from /usr/share/transmission
  server.document-root = "/usr/share/"
  #Forward RPC requests to the Transmission daemon
  proxy.server = (
    "/transmission/rpc" => (
      (
        "host" => "127.0.0.1",
        "port" => 9091
      )
    )
  )
}