NonStop Servlets for JavaServer Pages (NSJSP) 7.0 System Administrator's Guide
Configuring NSJSP
NonStop Servlets for JavaServer Pages (NSJSP) 7.0 System Administrator’s Guide—674372-005
3-10
The Installation-Specific servlet.config File
#
# By default, the JVM is run without a JAAS configuration file.
#
set NSJSP_JAAS_CONFIG -Dnsjsp.jaas.login.config=none
#
# If you wish to use the NSJSP JAAS NonStopLoginModule, uncomment the
next
# statement ("set NSJSP_JAAS_CONFIG ...").
#
# Note: the "double" equalto signs "==" is not a typo!! This informs the
JVM
# to use this file exclusively and that all others are to be ignored.
#
# set NSJSP_JAAS_CONFIG -
Djava.security.auth.login.config==$env(JAAS_CONFIG_FILE)
#################################################################
#
# Set the JAVA_HOME and GUARDIAN_SUBVOL
#
set env(JAVA_HOME) /home/nsjsp/paxs/java6ACA/java
if {![info exists env(GUARDIAN_SUBVOL)]} {
set env(GUARDIAN_SUBVOL) /G/system/zweb
}
#################################################################
#
# The following code sets up the Java Specific class PATH variables into
# a Tcl variable called JVCP. JVCP will be prepended to the classpath of
# the JVM.
#
set JVCP ""
append JVCP $env(NSJSP_HOME) "/bin/bootstrap.jar:"
append JVCP $env(NSJSP_HOME) "/bin/commons-daemon.jar:"
append JVCP $env(NSJSP_HOME) "/bin/tomcat-juli.jar:"
append JVCP $env(NSJSP_HOME) "/bin/ns-logger.jar:"
append JVCP $env(NSJSP_HOME) "/bin/nsjspmbeanserver.jar:"
Example 3-3. An Installation-Specific servlet.config File










