Thank you for your fast response!

OK, I switched the log level to trace and provoked the problem. The
resulting Log file is attached.

Regarding my worker and ...properties, they are quite minimalistic but
they did their job, at least until now :)

uriworkermap.properties:

/Kolloquium/*=ajp13

workers.properties.minimal:

worker.list=ajp13
worker.ajp13.type=ajp13
worker.ajp13.host=localhost
worker.ajp13.port=8085

Here is also my part from the server.xml regarding the connectors:

    <!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
    <Connector
       port="8080"
       maxHttpHeaderSize="8192"
       maxThreads="150"
       minSpareThreads="25"
       maxSpareThreads="75"
       enableLookups="false"
       redirectPort="8443"
       acceptCount="100"
       connectionTimeout="20000"
       disableUploadTimeout="true"
       maxKeepAliveRequests="1"

       compression="on"
       compressionMinSize="2048"
       noCompressionUserAgents="gozilla, traviata"
       compressableMimeType="text/html,text/xml"
    />

    <!-- Define a SSL HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector
       port="8443"
       maxHttpHeaderSize="8192"
       maxThreads="150"
       minSpareThreads="25"
       maxSpareThreads="75"
       enableLookups="false"
       disableUploadTimeout="true"
       acceptCount="100"
       scheme="https"
       secure="true"
       clientAuth="false"
       sslProtocol="TLS"
       maxKeepAliveRequests="1"

       compression="on"
       compressionMinSize="2048"
       noCompressionUserAgents="gozilla, traviata"
       compressableMimeType="text/html,text/xml"
    />
    -->

    <!-- Define an AJP 1.3 Connector on port 8085 -->

    <Connector
      port="8085"
      enableLookups="false"
      redirectPort="8080"
      protocol="AJP/1.3"
      maxKeepAliveRequests="1"

      compression="on"
      compressionMinSize="2048"
      noCompressionUserAgents="gozilla, traviata"
      compressableMimeType="text/html,text/xml"
    />

Thanks again!

Best regards,


Thomas Wagner

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to