Sha256: ec18438ff65961178b8bd394fcbe034a201d93ec296def24ff3f88caf0f1b458

Contents?: true

Size: 855 Bytes

Versions: 4

Compression:

Stored size: 855 Bytes

Contents

<!DOCTYPE web-app PUBLIC
  "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
  "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>

  <context-param>
    <param-name>public.root</param-name>
    <param-value>/</param-value>
  </context-param>

  <context-param>
      <param-name>jruby.compat.version</param-name>
      <param-value>1.9</param-value>
  </context-param>

  <context-param>
    <param-name>rack.env</param-name>
    <param-value>production</param-value>
  </context-param>

  <filter>
    <filter-name>RackFilter</filter-name>
    <filter-class>org.jruby.rack.RackFilter</filter-class>
  </filter>

  <filter-mapping>
    <filter-name>RackFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

  <listener>
    <listener-class>org.jruby.rack.RackServletContextListener</listener-class>
  </listener>

</web-app>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
openshifter-0.6 templates/openshift/action_hooks/templates/web.xml
openshifter-0.5 templates/openshift/action_hooks/templates/web.xml
openshifter-0.4 templates/openshift/action_hooks/templates/web.xml
openshifter-0.3 templates/openshift/action_hooks/templates/web.xml