|
1 |
| - |
2 | 1 | <!--
|
3 | 2 | ++ Base configuration for eXist's URL rewriting. This file defines
|
4 | 3 | ++ all basic path mappings. A path can be mapped to a servlet or
|
5 | 4 | ++ the root of a directory or collection hierarchy.
|
6 |
| - |
7 |
| - $Id$ |
| 5 | + ++ |
| 6 | + ++ The order of elements within this configuration file is significant. |
8 | 7 | -->
|
9 | 8 | <configuration xmlns="http://exist.sourceforge.net/NS/exist" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
10 | 9 | xsi:schemaLocation="http://exist.sourceforge.net/NS/exist file:../../schema/controller-config.xsd">
|
|
24 | 23 | <!-- RESTXQ -->
|
25 | 24 | <forward pattern="/restxq/" servlet="RestXqServlet"/>
|
26 | 25 |
|
27 |
| - <!-- scale images on the fly and cache the output. --> |
| 26 | + <!-- Scale images on the fly and cache the output. --> |
28 | 27 | <!--
|
29 | 28 | <forward pattern="/images" servlet="ScaleImageJAI"/>
|
30 | 29 | -->
|
31 | 30 |
|
32 | 31 | <!-- The JMX status servlet used to monitor the db -->
|
33 | 32 | <forward pattern="/status" servlet="JMXServlet"/>
|
34 | 33 |
|
35 |
| - <!-- |
36 |
| - ++ Default configuration: main web application is served from the |
37 |
| - ++ webapp directory. |
38 |
| - --> |
| 34 | + <!-- HTTP requests to /apps are mapped onto the database path /db/apps --> |
39 | 35 | <root pattern="/apps" path="xmldb:exist:///db/apps"/>
|
40 | 36 |
|
| 37 | + <!-- |
| 38 | + ++ The default fallback web application is served from the |
| 39 | + ++ /etc/webapp directory on the filesystem. |
| 40 | + --> |
| 41 | + |
| 42 | + <root pattern=".*" path="/"/> |
| 43 | + |
41 | 44 | <!--
|
42 | 45 | ++ To redirect requests based on the server name (i.e. www.example.com)
|
43 |
| - ++ to a specific collection within the database, comment out the following |
| 46 | + ++ to a specific collection within the database, comment out the previous |
44 | 47 | ++ root line and uncomment the block below with the server-name
|
45 | 48 | ++ attribute.
|
46 | 49 | -->
|
47 |
| - <root pattern=".*" path="/"/> |
48 |
| - |
49 | 50 |
|
50 | 51 | <!--
|
51 | 52 | <root server-name="site1.example.com" pattern="/*" path="xmldb:exist:///db/org/site1/"/>
|
|
56 | 57 | -->
|
57 | 58 |
|
58 | 59 | <!--
|
59 |
| - ++ The following configuration assumes that the main webapp |
60 |
| - ++ is stored in the database. However, the contents of the /webapp directory |
61 |
| - ++ should still be accessible with a /fs prefix in the path. |
| 60 | + ++ The following alternative configuration assumes that the main webapp |
| 61 | + ++ is stored in the database. However, the contents of the /etc/webapp directory |
| 62 | + ++ will still be accessible with a /fs prefix in the path. |
| 63 | + --> |
| 64 | + <!-- |
| 65 | + <root pattern="/fs" path="/"/> |
| 66 | + <root pattern=".*" path="xmldb:exist:///db/www"/> |
62 | 67 | -->
|
63 |
| - <!--root pattern="/fs" path="/"/> |
64 |
| - <root pattern=".*" path="xmldb:exist:///db/www"/--> |
65 | 68 |
|
66 | 69 | <!--
|
67 |
| - ++ Order is important here: the forward rule for XQuery resources has |
68 |
| - ++ to be last in this document, otherwise all XQuery files would be immediately |
69 |
| - ++ forwarded to the XQueryServlet without ever going through any of the |
70 |
| - ++ controllers. |
| 70 | + ++ Order is important. The following forward rule for XQuery resources has |
| 71 | + ++ to be last in this document. Otherwise, all XQuery files would be immediately |
| 72 | + ++ forwarded to the XQueryServlet without ever going through controllers. |
71 | 73 | -->
|
72 | 74 | <forward pattern=".*\.(xq|xql|xqy|xquery)$" servlet="XQueryServlet"/>
|
| 75 | + |
73 | 76 | </configuration>
|
0 commit comments