ApJServMount
ApJServMount [name] [jserv-url] Default: NONE
Mount point for Servlet zones (see documentation for more information on servlet zones)
[name]
is the name of the Apache URI path on which
to mount jserv-url
. [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. For example:
ApJServMount /servlets /myServlets
If the user requests
http://host/servlets/TestServlet
, the servlet
TestServlet
in zone
myServlets on the default host through default
protocol on default port will be requested. For example:
ApJServMount /servlets ajpv12://localhost:8007
If the user requests
http://host/servlets/myServlets/TestServlet
, the
servlet TestServlet
in zone
myServlets will be requested. For example:
ApJServMount /servlets ajpv12://jserv.mydomain.com:15643/myServlets
If the 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.