Skip to content

Commit

Permalink
Jetty 12 - Remove CGI servlet (#9516)
Browse files Browse the repository at this point in the history
* Remove CGI servlet
* Remove CGI references
  • Loading branch information
joakime authored Mar 29, 2023
1 parent a5d863a commit 6ce5a0f
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 1,200 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ Also included are a number of Jetty specific handlers that allow access to inter
include::default-servlet.adoc[]
include::proxy-servlet.adoc[]
include::balancer-servlet.adoc[]
include::cgi-servlet.adoc[]
include::qos-filter.adoc[]
include::dos-filter.adoc[]
include::header-filter.adoc[]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,18 +121,6 @@
<url-pattern>/dispatch/*</url-pattern>
</servlet-mapping>

<servlet>
<servlet-name>CGI</servlet-name>
<servlet-class>org.eclipse.jetty.ee10.servlets.CGI</servlet-class>
<load-on-startup>1</load-on-startup>
<async-supported>true</async-supported>
</servlet>

<servlet-mapping>
<servlet-name>CGI</servlet-name>
<url-pattern>/cgi-bin/*</url-pattern>
</servlet-mapping>

<servlet>
<servlet-name>Chat</servlet-name>
<servlet-class>org.example.ChatServlet</servlet-class>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[description]
Adds Jetty utility servlets and filters available to a webapp.
Puts org.eclipse.jetty.servlets on the server classpath (CGI, CrossOriginFilter, DosFilter,
Puts org.eclipse.jetty.servlets on the server classpath (CrossOriginFilter, DosFilter,
MultiPartFilter, PushCacheFilter, QoSFilter, etc.) for use by all webapplications.

[environment]
Expand Down
Loading

0 comments on commit 6ce5a0f

Please sign in to comment.