You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by hg...@apache.org on 2001/05/14 11:25:42 UTC

cvs commit: jakarta-tomcat-connectors/jk/src/native/apache2.0 install-unix.sh

hgomez      01/05/14 02:25:42

  Added:       jk/src/native/apache2.0 install-unix.sh
  Log:
  install file
  
  Revision  Changes    Path
  1.1                  jakarta-tomcat-connectors/jk/src/native/apache2.0/install-unix.sh
  
  Index: install-unix.sh
  ===================================================================
  #!/bin/sh
  
  # $Id: install-unix.sh,v 1.1 2001/05/14 09:25:40 hgomez Exp $
  
  # install.sh for mod_jk.so
  # copies built mod_jk.so into apache/libexec dir
  # Usage: install-unix.sh 
  
  # Sets a bunch of variables and calls APXS to install mod_jk
  # on Unix.  An alternative to the makefiles, hopefully more portable.
  
  # Find APACHE_HOME
  if [ -z "$APACHE_HOME" ]
  then
  # Where your apache lives
  APACHE_HOME=/usr/local/apache
  fi
  
  # Copy mod_jk.so into the apache libexec directory
  echo Installing mod_jk.so into $APACHE_HOME/libexec
  cp mod_jk.so $APACHE_HOME/libexec
  
  # Done!
  echo Done. Add the following line to $APACHE_HOME/conf/httpd.conf:
  echo "   " Include TOMCAT_HOME/conf/mod_jk.conf-auto
  echo '(replace "TOMCAT_HOME" with the actual directory name)'