Looking at the Rundeck 1.1 RPM installation it seems that there's no "free" web document root with the Jetty installation (unlike with a full Jetty install).
In the absence of any other web server to store files and packages to be distributed by Rundeck jobs, configuring Jetty to provide a web document root (under "/var/rundeck" somewhere?) would be a very great convenience.
Anthonys-MacBook-Pro-2:jetty-6.1.21 anthony$ more contexts/controltier.xml
<Configure class="org.mortbay.jetty.servlet.Context">
<Set name="contextPath">/www</Set>
<Set name="resourceBase"><SystemProperty name="jetty.home" default="."/>/var/rundeck/www</Set>
<Call name="addServlet">
<Arg>org.mortbay.jetty.servlet.DefaultServlet</Arg>
<Arg>/</Arg>
</Call>
</Configure>
... "org.mortbay.jetty.servlet.DefaultServlet" is included in jetty-6.1.21.jar so perhaps it is possible to do this with Rundeck? Perhaps from the "com.dtolabs.rundeck.RunServer" class?
Anthony.