SOURCES: ApacheJServ.conf - tabs, unified
glen
glen at pld-linux.org
Thu Dec 29 13:07:46 CET 2005
Author: glen Date: Thu Dec 29 12:07:46 2005 GMT
Module: SOURCES Tag: HEAD
---- Log message:
- tabs, unified
---- Files affected:
SOURCES:
ApacheJServ.conf (1.3 -> 1.4)
---- Diffs:
================================================================
Index: SOURCES/ApacheJServ.conf
diff -u SOURCES/ApacheJServ.conf:1.3 SOURCES/ApacheJServ.conf:1.4
--- SOURCES/ApacheJServ.conf:1.3 Fri Aug 19 19:45:36 2005
+++ SOURCES/ApacheJServ.conf Thu Dec 29 13:07:41 2005
@@ -2,122 +2,120 @@
LoadModule jserv_module modules/mod_jserv.so
<IfModule mod_jserv.c>
- # Whether Apache must start Apache JServ or not (On=Manual Off=Autostart)
- # Syntax: ApJServManual [on/off]
- # Default: "Off"
- ApJServManual off
-
- # Properties filename for Apache JServ in Automatic Mode.
- # In manual mode this directive is ignored
- # Syntax: ApJServProperties [filename]
- # Default: "./conf/jserv.properties"
- ApJServProperties /etc/jserv/jserv.properties
-
- # Log file for this module operation relative to Apache root directory.
- # Set the name of the trace/log file. To avoid possible confusion about
- # the location of this file, an absolute pathname is recommended.
- #
- # This log file is different than the log file that is in the
- # jserv.properties file. This is the log file for the C portion of Apache
- # JServ.
- #
- # On Unix, this file must have write permissions by the owner of the JVM
- # process. In other words, if you are running Apache JServ in manual mode
- # and Apache is running as user nobody, then the file must have its
- # permissions set so that that user can write to it.
- # Syntax: ApJServLogFile [filename]
- # Default: "./logs/mod_jserv.log"
- # Note: when set to "DISABLED", the log will be redirected to Apache error log
- ApJServLogFile DISABLED
-
- # Log Level for this module
- # Syntax: ApJServLogLevel [debug|info|notice|warn|error|crit|alert|emerg]
- # Default: info (unless compiled w/ JSERV_DEBUG, in which case it's debug)
- ApJServLogLevel notice
-
- # Protocol used by this host to connect to Apache JServ
- # (see documentation for more details on available protocols)
- # Syntax: ApJServDefaultProtocol [name]
- # Default: "ajpv12"
- ApJServDefaultProtocol ajpv12
-
- # Default host on which Apache JServ is running
- # Syntax: ApJServDefaultHost [hostname]
- # Default: "localhost"
- #ApJServDefaultHost java.apache.org
-
- # Default port that Apache JServ is listening to
- # Syntax: ApJServDefaultPort [number]
- # Default: protocol-dependant (for ajpv12 protocol this is "8007")
- ApJServDefaultPort 8007
-
- # The amount of time to give to the JVM to start up as well
- # as the amount of time to wait to ping the JVM to see if it
- # is alive. Slow or heavily loaded machines might want to
- # increase this value.
- # Default: 10 seconds
- # ApJServVMTimeout 10
-
- # Apache JServ secret key file relative to Apache root directory.
- # Syntax: ApJServSecretKey [filename]
- # Default: "./conf/jserv.secret.key"
- # Warning: if authentication is DISABLED, everyone on this machine (not just
- # this module) may connect to your servlet engine and execute servlet
- # bypassing web server restrictions. See the documentation for more information
- #ApJServSecretKey DISABLED
- ApJServSecretKey /etc/jserv/jserv.secret.key
-
- # Mount point for Servlet zones
- # (see documentation for more information on servlet zones)
- # Syntax: ApJServMount [name] [jserv-url]
- # Default: NONE
- # Note: [name] is the name of the Apache URI path to mount jserv-url on
- # [jserv-url] is something like "protocol://host:port/zone"
- # If protocol, host or port are not specified, the values from
- # "ApJServDefaultProtocol", "ApJServDefaultHost" or "ApJServDefaultPort"
- # will be used.
- # If zone is not specified, the zone name will be the first subdirectory of
- # the called servlet.
- # Example: "ApJServMount /servlets /myServlets"
- # if user requests "http://host/servlets/TestServlet"
- # the servlet "TestServlet" in zone "myServlets" on default host
- # thru default protocol on defaul port will be requested
- # Example: "ApJServMount /servlets ajpv12://localhost:8007"
- # if user requests "http://host/servlets/myServlets/TestServlet"
- # the servlet "TestServlet" in zone "myServlets" will be requested
- # Example: "ApJServMount /servlets ajpv12://jserv.mydomain.com:15643/myServlets"
- # if user requests "http://host/servlets/TestServlet" the servlet
- # "TestServlet" in zone "myServlets" on host "jserv.mydomain.com" using
- # "ajpv12" protocol on port "15643" will be executed
- ApJServMount /servlets /root
- ApJServMount /servlet /root
-
- # Whether <VirtualHost> inherits base host mount points or not
- # Syntax: ApJServMountCopy [on/off]
- # Default: "On"
- # Note: This directive is meaningful only when virtual hosts are being used
- ApJServMountCopy on
-
- # Executes a servlet passing filename with proper extension in PATH_TRANSLATED
- # property of servlet request.
- # Syntax: ApJServAction [extension] [servlet-uri]
- # Defaults: NONE
- # Notes: This is used for external tools.
- #ApJServAction .jsp /servlets/org.gjt.jsp.JSPServlet
- #ApJServAction .gsp /servlets/com.bitmechanic.gsp.GspServlet
- #ApJServAction .jhtml /servlets/org.apache.servlet.ssi.SSI
- #ApJServAction .xml /servlets/org.apache.cocoon.Cocoon
-
- # Enable the Apache JServ status handler with the URL of
- # "http://servername/jserv/" (note the trailing slash!)
- # Change the "deny" directive to restrict access to this status page.
- <Location /jserv/>
- SetHandler jserv-status
-
- order deny,allow
- deny from all
- allow from 127.0.0.1
- </Location>
+ # Whether Apache must start Apache JServ or not (On=Manual Off=Autostart)
+ # Syntax: ApJServManual [on/off]
+ # Default: "Off"
+ ApJServManual off
+
+ # Properties filename for Apache JServ in Automatic Mode.
+ # In manual mode this directive is ignored
+ # Syntax: ApJServProperties [filename]
+ # Default: "./conf/jserv.properties"
+ ApJServProperties /etc/jserv/jserv.properties
+
+ # Log file for this module operation relative to Apache root directory.
+ # Set the name of the trace/log file. To avoid possible confusion about
+ # the location of this file, an absolute pathname is recommended.
+ #
+ # This log file is different than the log file that is in the
+ # jserv.properties file. This is the log file for the C portion of Apache
+ # JServ.
+ #
+ # On Unix, this file must have write permissions by the owner of the JVM
+ # process. In other words, if you are running Apache JServ in manual mode
+ # and Apache is running as user nobody, then the file must have its
+ # permissions set so that that user can write to it.
+ # Syntax: ApJServLogFile [filename]
+ # Default: "./logs/mod_jserv.log"
+ # Note: when set to "DISABLED", the log will be redirected to Apache error log
+ ApJServLogFile DISABLED
+
+ # Log Level for this module
+ # Syntax: ApJServLogLevel [debug|info|notice|warn|error|crit|alert|emerg]
+ # Default: info (unless compiled w/ JSERV_DEBUG, in which case it's debug)
+ ApJServLogLevel notice
+
+ # Protocol used by this host to connect to Apache JServ
+ # (see documentation for more details on available protocols)
+ # Syntax: ApJServDefaultProtocol [name]
+ # Default: "ajpv12"
+ ApJServDefaultProtocol ajpv12
+
+ # Default host on which Apache JServ is running
+ # Syntax: ApJServDefaultHost [hostname]
+ # Default: "localhost"
+ #ApJServDefaultHost java.apache.org
+
+ # Default port that Apache JServ is listening to
+ # Syntax: ApJServDefaultPort [number]
+ # Default: protocol-dependant (for ajpv12 protocol this is "8007")
+ ApJServDefaultPort 8007
+
+ # The amount of time to give to the JVM to start up as well
+ # as the amount of time to wait to ping the JVM to see if it
+ # is alive. Slow or heavily loaded machines might want to
+ # increase this value.
+ # Default: 10 seconds
+ # ApJServVMTimeout 10
+
+ # Apache JServ secret key file relative to Apache root directory.
+ # Syntax: ApJServSecretKey [filename]
+ # Default: "./conf/jserv.secret.key"
+ # Warning: if authentication is DISABLED, everyone on this machine (not just
+ # this module) may connect to your servlet engine and execute servlet
+ # bypassing web server restrictions. See the documentation for more information
+ #ApJServSecretKey DISABLED
+ ApJServSecretKey /etc/jserv/jserv.secret.key
+
+ # Mount point for Servlet zones
+ # (see documentation for more information on servlet zones)
+ # Syntax: ApJServMount [name] [jserv-url]
+ # Default: NONE
+ # Note: [name] is the name of the Apache URI path to mount jserv-url on
+ # [jserv-url] is something like "protocol://host:port/zone"
+ # If protocol, host or port are not specified, the values from
+ # "ApJServDefaultProtocol", "ApJServDefaultHost" or "ApJServDefaultPort"
+ # will be used.
+ # If zone is not specified, the zone name will be the first subdirectory of
+ # the called servlet.
+ # Example: "ApJServMount /servlets /myServlets"
+ # if user requests "http://host/servlets/TestServlet"
+ # the servlet "TestServlet" in zone "myServlets" on default host
+ # thru default protocol on defaul port will be requested
+ # Example: "ApJServMount /servlets ajpv12://localhost:8007"
+ # if user requests "http://host/servlets/myServlets/TestServlet"
+ # the servlet "TestServlet" in zone "myServlets" will be requested
+ # Example: "ApJServMount /servlets ajpv12://jserv.mydomain.com:15643/myServlets"
+ # if user requests "http://host/servlets/TestServlet" the servlet
+ # "TestServlet" in zone "myServlets" on host "jserv.mydomain.com" using
+ # "ajpv12" protocol on port "15643" will be executed
+ ApJServMount /servlets /root
+ ApJServMount /servlet /root
+
+ # Whether <VirtualHost> inherits base host mount points or not
+ # Syntax: ApJServMountCopy [on/off]
+ # Default: "On"
+ # Note: This directive is meaningful only when virtual hosts are being used
+ ApJServMountCopy on
+
+ # Executes a servlet passing filename with proper extension in PATH_TRANSLATED
+ # property of servlet request.
+ # Syntax: ApJServAction [extension] [servlet-uri]
+ # Defaults: NONE
+ # Notes: This is used for external tools.
+ #ApJServAction .jsp /servlets/org.gjt.jsp.JSPServlet
+ #ApJServAction .gsp /servlets/com.bitmechanic.gsp.GspServlet
+ #ApJServAction .jhtml /servlets/org.apache.servlet.ssi.SSI
+ #ApJServAction .xml /servlets/org.apache.cocoon.Cocoon
+
+ # Enable the Apache JServ status handler with the URL of
+ # "http://servername/jserv/" (note the trailing slash!)
+ # Change the "deny" directive to restrict access to this status page.
+ <Location /jserv/>
+ SetHandler jserv-status
+
+ order deny,allow
+ deny from all
+ allow from 127.0.0.1
+ </Location>
</IfModule>
-
-# vim: filetype=apache ts=4 sw=4 et
================================================================
---- CVS-web:
http://cvs.pld-linux.org/SOURCES/ApacheJServ.conf?r1=1.3&r2=1.4&f=u
More information about the pld-cvs-commit
mailing list