The web server plugins (mod_caucho, isapi_srun, and nsapi) have two main tasks:
Note: This page uses "mod_caucho" to mean all the plugins. All of the plugins work the same, so "mod_caucho" is just a shorthand for "mod_caucho, isapi_srun, and nsapi". In most cases, mod_caucho will just use resin.conf as expected. This tutorial should help understand what's going for the more complicated cases.
The servlet-mapping tag selects the URLs to send to Resin. <host> and <web-app> group the servlet-mapping tags. mod_caucho ignores all other tags in the resin.conf. (mod_caucho does understand resin:include and how to find web.xml, but that's part of the parsing, not part of the dispatch logic.) When reading the resin.conf, mod_caucho uses only the following tags:
url-patternservlet-mapping's url-pattern selects the URLs to pass to Resin. servlet-mapping and url-pattern are part of the Servlet 2.3 standard, so there are many references explaining how it works. url-pattern can take one of four forms:
url-regexpNote: mod_caucho does not understand regular expressions. If you put regular expressions in your resin.conf, mod_caucho will not send the request to Resin. Apache will handle the request itself. If you want to use regular expressions in servlet-mapping, web-app, or hosts, you must use Apache-specific configuration to send the request to Resin. You can see this by looking at /caucho-status. /caucho-status will not display any regular expressions. special servlet-mappingsThere are two special servlet-names which only affect the plugins: and .will direct a request to Resin. The servlet engine itself will ignore the plugin_match directive. You can use plugin_match to direct an entire subtree to Resin, e.g. to workaround the regexp limitation, but allow Resin's other servlet-mapping directives to control which servlets are used. keeps the request at on the web server. So you could create a directory where all documents, including JSPs are served by the web server.
<web-app>web-apps collect servlets and JSP files into separate applications. All the servlet-mappings in a web-app apply only to the URL suffix. In the following example, every URL starting with /prefix/url maps to the web-app. The servlet-mapping only applies to URLs matching the prefix.
In the exaple, mod_caucho will match any URL matching /prefix/url/*.foo. /prefix/url/bar.foo will match, but /test/bar.foo will not match. Note: Resin standalone allows a attribute instead of an id. Because mod_caucho does not understand regexps, it will ignore any web-app with a attribute.Note: web.xml files and war files are treated exactly the same as web-apps in the resin.conf. <host>host blocks configure virtual hosts. There's a bit of extra work for virtual hosts that we'll ignore here. (Basically, you need to add Apache directives so Resin knows the name of the virtual host.) For dispatching, a host block gathers a set of web-apps. Each host will match a different set of URLs, depending on the web-app configuration. The default host matches any host not matched by a specific rule. As usual, /caucho-status will show the URLs matched for each host. Note: mod_caucho does not understand the host attribute. It will ignore all hosts using . To get around this, you can either configure Apache directly (see below), or configure the default host with the same set of servlet-mappings. Since mod_caucho will use the default host if no others match, it will send the right requests to Resin.
The special URL is invaluable in debugging Resin configurations. displays all the resin.conf patterns, so you can easily scan it to see which URLs mod_caucho is sending to Resin and which ones are handled by Apache.
You can configure Apache directly, instead of letting mod_caucho dispatch from the resin.conf file. If you use this method, you need to make sure you match the Apache configuration with the Resin configuration. Note: This technique uses Apache-specific features, so it's not directly applicable to IIS or iPlanet. Apache's and directives send requests to Resin. The mod_caucho handler is .
Because Apache's is external to mod_caucho, /caucho-status will not show any dispatching.
|