From 24e9469b001a68e1e45e1e041a40972988ebc471 Mon Sep 17 00:00:00 2001
From: gnaegi <none@none>
Date: Mon, 8 Aug 2011 09:21:33 +0200
Subject: [PATCH] FXOLAT-193 OLAT-6294 hint about required uri encoding
 parameter in tomcat connector

--HG--
branch : uzhFixes711
---
 olat3/INSTALL.README.HEAD | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/olat3/INSTALL.README.HEAD b/olat3/INSTALL.README.HEAD
index 4f2197ae0c4..61dc7cd5efb 100644
--- a/olat3/INSTALL.README.HEAD
+++ b/olat3/INSTALL.README.HEAD
@@ -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>
 
-- 
GitLab