files
|
apache-tomcat.txt,
apache_start.c.txt,
apache_stop.c.txt,
cjdk1.1.txt,
cjdk1.2.txt,
cjdk1.3.txt,
cs.txt,
cshrc.txt,
htaccess.txt,
http.conf-init.txt,
httpd.conf.txt,
jspc.sh.txt,
killme.c.txt,
kjdk1.1.txt,
kjdk1.2.txt,
kjdk1.3.txt,
mod_jk.conf-12.txt,
mod_jk.conf.txt,
mod_jk_conf_init.txt,
profile.txt,
server.xml-12.txt,
server.xml.init.txt,
server.xml.txt,
shutdown.sh.txt,
startup.sh.txt,
workers.properties-12.txt,
workers.properties.txt,
workers_properties_init.txt
|
|
|
###################################################################
# Auto generated configuration. Dated: Mon Oct 09 01:07:32 EDT 2000
###################################################################
#
# The following line instructs Apache to load the jk module
#
# LoadModule jk_module libexec/mod_jk.so
# AddModule mod_jk.c
JkWorkersFile /local/tomcat_3.2b5/build/tomcat/conf/workers.properties
JkLogFile /local/tomcat_3.2b5/build/tomcat/logs/mod_jk.log
#
# Log level to be used by mod_jk
#
JkLogLevel debug
###################################################################
# SSL configuration #
#
# By default mod_jk is configured to collect SSL information from
# the apache environment and send it to the Tomcat workers. The
# problem is that there are many SSL solutions for Apache and as
# a result the environment variable names may change.
#
# The following (commented out) JK related SSL configureation
# can be used to customize mod_jk's SSL behaviour.
#
# Should mod_jk send SSL information to Tomact (default is On)
JkExtractSSL Off
#
# What is the indicator for SSL (default is HTTPS)
JkHTTPSIndicator HTTPS
#
# What is the indicator for SSL session (default is SSL_SESSION_ID)
JkSESSIONIndicator SSL_SESSION_ID
#
# What is the indicator for client SSL cipher suit (default is SSL_CIPHER)
JkCIPHERIndicator SSL_CIPHER
#
# What is the indicator for the client SSL certificated (default is SSL_CLIENT_CERT)
JkCERTSIndicator SSL_CLIENT_CERT
#
# #
###################################################################
#
# Root context mounts for Tomcat
#
# JkMount /*.jsp ajp12
# JkMount /servlet/* ajp12
#########################################################
# Auto configuration for the /examples context starts.
#########################################################
#
# The following line makes apache aware of the location of the /examples context
#
Alias /examples "/usr/local/tomcat_3.2b5/build/tomcat/webapps/examples"
Options Indexes FollowSymLinks
#
# The following line mounts all files in /examples to be served via Tomcat.
# The reason being that if we do /example/servlet than servlet remapping
# will not work.
#
JkMount /examples/* ajp13
#
# The following line prohibits users from directly accessing WEB-INF
#
AllowOverride None
deny from all
#
# The following line prohibits users from directly accessing META-INF
#
AllowOverride None
deny from all
AuthType Basic
AuthName "For internal users only"
AuthUserFile /usr/local/apache/auth/htpasswd
AuthGroupFile /usr/local/apache/auth/htgroup
require group demo
#
# The following line makes apache aware of the location of the /admin context
#
Alias /admin "/local/tomcat_3.2b5/build/tomcat/webapps/admin"
Options Indexes FollowSymLinks
#
# Mount /admin for Tomcat
#
JkMount /admin/* ajp13
#
# The following line prohibits users from directly accessing WEB-INF
#
AllowOverride None
deny from all
#
# The following line prohibits users from directly accessing META-INF
#
AllowOverride None
deny from all
# It is good to protect development stuff with passwords
AuthType Basic
AuthName "For internal users only"
AuthUserFile /usr/local/apache/auth/htpasswd
AuthGroupFile /usr/local/apache/auth/htgroup
require group demo
#
# The following line makes apache aware of the location of the /test context
#
Alias /test "/local/tomcat_3.2b5/build/tomcat/webapps/test"
Options Indexes FollowSymLinks
#
# The following line mounts /test to Tomcat
#
JkMount /test/* ajp13
#
# The following line prohibits users from directly accessing WEB-INF
#
AllowOverride None
deny from all
#
# The following line prohibits users from directly accessing META-INF
#
AllowOverride None
deny from all
AuthType Basic
AuthName "For internal users only"
AuthUserFile /usr/local/apache/auth/htpasswd
AuthGroupFile /usr/local/apache/auth/htgroup
require group demo
Alias /docs /local/apache_1.3.14/tomcat/webapps/ROOT/docs
Options Indexes FollowSymLinks
JkMount /docs/* ajp13
AllowOverride None
deny from all
# It is good to protect development stuff with passwords
AuthType Basic
AuthName "For internal users only"
AuthUserFile /usr/local/apache/auth/htpasswd
AuthGroupFile /usr/local/apache/auth/htgroup
require group demo
Alias /SciPortal /local/apache_1.3.14/htdocs/SciPortal
Options Indexes FollowSymLinks
JkMount /SciPortal/* ajp13
AllowOverride None
deny from all
# It is good to protect development stuff with passwords
AuthType Basic
AuthName "For internal users only"
AuthUserFile /usr/local/apache/auth/htpasswd
AuthGroupFile /usr/local/apache/auth/htgroup
require group demo
# listener is not protected by basic authentication
Alias /listener /local/apache_1.3.12/htdocs/listener
Options Indexes FollowSymLinks
JkMount /listener/* ajp13
AllowOverride None
deny from all
|