<?xml version="1.0" encoding="UTF-8" ?>

<!-- OLAT Tomcat Server Configuration File -->
<Server port="8009" shutdown="SHUTDOWN" debug="0">
  <Service name="Catalina">
  
	<!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443
	<Connector port="8443"
		scheme="https" 
		secure="true" 
		clientAuth="false" 
		sslProtocol="TLS"
		keystoreFile=""
		keystorePass=""
		keystoreType="" 
		URIEncoding="utf-8"/>
	 -->

	<!-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8080 -->
	
	<Connector port="8080"
    	minProcessors="2" 
    	maxProcessors="100"
        debug="0" 
        URIEncoding="utf-8"
        />
	

	<!-- Define an AJP 1.3 Connector on port ${eclipse.server.ajp.port} -->
	<!--
	<Connector port="8005" 
    	minProcessors="5" 
    	maxProcessors="100"
        enableLookups="false" 
		redirectPort="8443" 
        debug="0"
        protocol="AJP/1.3" />
	-->
  	
  	<!-- The OLAT application context -->      
    <Engine name="Catalina" defaultHost="localhost" debug="4">
      	<Host name="localhost" debug="4" appBase="webapps">
			<Context path="/olat" 
				docBase="${project.basedir}/target/olat"
				debug="4" reloadable="false" />
		</Host>
    </Engine>
	
  </Service>
</Server>

