NIHVIVO-3228 Warn installers not to create Context elements server.xml unless they include the necessary parameters.
This commit is contained in:
parent
69e9c7f261
commit
9f73647047
1 changed files with 20 additions and 6 deletions
|
@ -691,17 +691,31 @@
|
|||
<p>
|
||||
Edit Tomcat's conf/server.xml and add the following attribute to each of the
|
||||
Connector elements: URIEncoding="UTF-8".
|
||||
</p>
|
||||
<pre>
|
||||
<Server ...>
|
||||
<Service ...>
|
||||
<Connector ... URIEncoding="UTF-8"/>
|
||||
<Server ...>
|
||||
<Service ...>
|
||||
<Connector ... URIEncoding="UTF-8"/>
|
||||
...
|
||||
</Connector>
|
||||
</Service>
|
||||
</Server>
|
||||
</Connector>
|
||||
</Service>
|
||||
</Server>
|
||||
</pre>
|
||||
<p>
|
||||
<h4>Take care when creating Context elements</h4>
|
||||
<p>
|
||||
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.
|
||||
</p>
|
||||
<p>
|
||||
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.
|
||||
</p>
|
||||
<p>
|
||||
See <a href="#tomcat_connector">Section X</a> below,
|
||||
for an example of overriding the VIVO context fragment.
|
||||
</p>
|
||||
|
||||
<h3 id="start_tomcat">VII. Start Tomcat </h3>
|
||||
<p>
|
||||
|
|
Loading…
Add table
Reference in a new issue