Content Engine / Tomcat Configuration (HTTP)

You need to create a connector in Tomcat for the SSE Proxy It must use a different port from the default connector used by CUE (port 8082 instead of 8080, for example). In this case CUE will connect to the Content Store on http://editorial.mydomain.com so you can set up the new connector as follows:

<Connector port="8082" protocol="HTTP/1.1" 
  maxThreads="50" URIEncoding="UTF-8"
  SSLEnabled="false"
  proxyName="editorial.mydomain.com" proxyPort="80" scheme="org.apache.coyote.http11.Http11NioProtocol"/>

Restart Tomcat for the change to take effect.

If you want to use Varnish with your installation, then you should set proxyPort to 81 and also use port 81 in your CUE configuration (see CUE Configuration (HTTP)).