Skip to content
Snippets Groups Projects
Commit 24e9469b authored by gnaegi's avatar gnaegi
Browse files

FXOLAT-193 OLAT-6294 hint about required uri encoding parameter in tomcat connector

--HG--
branch : uzhFixes711
parent c4bda34d
No related branches found
No related tags found
No related merge requests found
......@@ -19,13 +19,14 @@ mvn install (install copies all jars and resources to the target folder) If you
<?xml version="1.0" encoding="UTF-8"?>
<Server port="8005" shutdown="SHUTDOWN">
<Service name="Catalina">
<!-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8080 -->
<Connector port="8080"/>
<!-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8080 -->
<Connector port="8080" URIEncoding="UTF-8"/>
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" URIEncoding="UTF-8"/>
<Engine defaultHost="localhost" name="Catalina">
<Host appBase="webapps" name="localhost">
<Context path="/olat" docBase="/yourhome/workspace/olat3/olat/target/olat" debug="0" reloadable="false" ></Context>
</Host>
</Engine>
<Host appBase="webapps" name="localhost">
<Context path="/olat" docBase="/yourhome/workspace/olat3/olat/target/olat" debug="0" reloadable="false" ></Context>
</Host>
</Engine>
</Service>
</Server>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment