Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change 
notification.

The "HowTo" page has been changed by KonstantinKolinko:
http://wiki.apache.org/tomcat/HowTo?action=diff&rev1=123&rev2=124

Comment:
Replace obsolete "configuring SSI" recipe with a link to documentation

  This change takes effect immediately and does not require a restart of Tomcat.
  
  == How do I enable Server Side Includes (SSI)? ==
+ See http://tomcat.apache.org/tomcat-7.0-doc/ssi-howto.html
- two things have to be done for tomcat to aknowledge SSI scripts:
- 
- 1.  Rename $CATALINA_BASE/server/lib/servlets-ssi.renametojar to 
$CATALINA_BASE/server/lib/servlets-ssi.jar.
- 
- 2.  Uncomment the section of web.xml found in $CATALINA_BASE/conf/web.xml 
that deals with SSI.  it looks like this when it is uncommented:
- 
- {{{
-     <servlet>
-         <servlet-name>ssi</servlet-name>
-         <servlet-class>
-           org.apache.catalina.ssi.SSIServlet
-         </servlet-class>
-         <init-param>
-           <param-name>buffered</param-name>
-           <param-value>1</param-value>
-         </init-param>
-         <init-param>
-           <param-name>debug</param-name>
-           <param-value>0</param-value>
-         </init-param>
-         <init-param>
-           <param-name>expires</param-name>
-           <param-value>666</param-value>
-         </init-param>
-         <init-param>
-           <param-name>isVirtualWebappRelative</param-name>
-           <param-value>0</param-value>
-         </init-param>
-         <load-on-startup>4</load-on-startup>
-     </servlet>
- }}}
- additional information can be found at: 
http://tomcat.apache.org/tomcat-5.5-doc/ssi-howto.html
  
  == How do I install the Administration web app? ==
  If you install Tomcat 5.5 binaries, the Administration web app is not bundled 
with it; this describes how to add the Administration web app to your Tomcat 
5.5 installation.  (Tomcat 4.1 comes with the Administration web app as part of 
the binary).

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to