diff --git a/doc/install.html b/doc/install.html index 1255718e..636e3772 100644 --- a/doc/install.html +++ b/doc/install.html @@ -807,17 +807,30 @@
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>+
+ Each of the webapps in the VIVO distribution (VIVO 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. +