diff --git a/doc/install.html b/doc/install.html index b82848960..5aa4c3c53 100644 --- a/doc/install.html +++ b/doc/install.html @@ -691,17 +691,31 @@

Edit Tomcat's conf/server.xml and add the following attribute to each of the Connector elements: URIEncoding="UTF-8". +

-                    <Server ...>
-                      <Service ...>
-                        <Connector ... URIEncoding="UTF-8"/>
+                    <Server ...>
+                      <Service ...>
+                        <Connector ... URIEncoding="UTF-8"/>
                           ...
-                        </Connector>
-                      </Service>
-                    </Server>
+                        </Connector>
+                      </Service>
+                    </Server>
             
+

+

Take care when creating Context elements

+

+ Each of the webapps in the Vitro distribution (Vitro and Solr) includes a "context fragment" file, + containing some of the deployment information for that webapp.

+ Tomcat allows you to override these context fragments by adding Context elements to "server.xml". + If you decide to do this, be sure that your new Context element includes the necessary + deployment parameters from the overridden context fragment. +

+

+ See Section X below, + for an example of overriding the VIVO context fragment. +

VII. Start Tomcat