Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Configure Jetty 8 for CGI

Hi Jonathan,

it's still a servlet doing the job for you. Have a look at this: http://wiki.eclipse.org/Jetty/Feature/Servlets_Bundled_with_Jetty#CGI

Cheers,
Thomas

On Fri Jul 27 10:35:18 2012, jonathan.koch@xxxxxxxxxx wrote:
Hello together,

how can I configure CGI-BIN on Jetty 8.1.3.

In Jetty 5, it was:

  <Call name="addContext">

    <Arg>/cgi-bin/*</Arg>

    <Set name="ResourceBase"><SystemProperty name="jetty.home"
default="."/>/cgi-bin/</Set>

    <Call name="addServlet">

      <Arg>Common Gateway Interface</Arg>

      <Arg>/</Arg>

      <Arg>org.mortbay.servlet.CGI</Arg>

      <Put name="Path">/bin:/usr/bin:/usr/local/bin</Put>

    </Call>

  </Call>

Best regards,

Jonathan Koch



_______________________________________________
jetty-users mailing list
jetty-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/jetty-users

--
Thomas Becker <tbecker@xxxxxxxxxxx>
www.webtide.com – Developer advice, services and support from the
Jetty & CometD experts.


Back to the top