Is gzip compression with https possible Tomcat












2















Is is possible to configure Tomcat (7.075) for https AND enable gzip compression simultaneously? I can't figure out a valid combination of http connector properties in server.xml to get the job done. The four compression-related properties that work on http:



compression="on"
compressableMimeType="application/json"
compressionMinSize="8192"
useSendfile="false"


don't seem to have any effect when https is configured. My current config:



<Connector port="8443"
protocol="HTTP/1.1"
SSLEnabled="true"
maxThreads="50"
server="web"
allowTrace="false"
keystoreFile="/app/certs/keystore.jks"
keystorePass="********"
scheme="https"
secure="true"
clientAuth="false"
sslProtocol="TLS"
sslEnabledProtocols="TLSv1.1,TLSv1.2"
ciphers="TLS_..._SHA"
maxKeepAliveRequests="100"
connectionTimeout="20000"
compression="on"
compressableMimeType="application/json"
compressionMinSize="8192"
useSendfile="false"
maxSwallowSize="-1"
socket.soKeepAlive="true"/>









share|improve this question























  • Related stackoverflow.com/questions/2767211/…

    – Hackerman
    Aug 25 '17 at 20:20
















2















Is is possible to configure Tomcat (7.075) for https AND enable gzip compression simultaneously? I can't figure out a valid combination of http connector properties in server.xml to get the job done. The four compression-related properties that work on http:



compression="on"
compressableMimeType="application/json"
compressionMinSize="8192"
useSendfile="false"


don't seem to have any effect when https is configured. My current config:



<Connector port="8443"
protocol="HTTP/1.1"
SSLEnabled="true"
maxThreads="50"
server="web"
allowTrace="false"
keystoreFile="/app/certs/keystore.jks"
keystorePass="********"
scheme="https"
secure="true"
clientAuth="false"
sslProtocol="TLS"
sslEnabledProtocols="TLSv1.1,TLSv1.2"
ciphers="TLS_..._SHA"
maxKeepAliveRequests="100"
connectionTimeout="20000"
compression="on"
compressableMimeType="application/json"
compressionMinSize="8192"
useSendfile="false"
maxSwallowSize="-1"
socket.soKeepAlive="true"/>









share|improve this question























  • Related stackoverflow.com/questions/2767211/…

    – Hackerman
    Aug 25 '17 at 20:20














2












2








2








Is is possible to configure Tomcat (7.075) for https AND enable gzip compression simultaneously? I can't figure out a valid combination of http connector properties in server.xml to get the job done. The four compression-related properties that work on http:



compression="on"
compressableMimeType="application/json"
compressionMinSize="8192"
useSendfile="false"


don't seem to have any effect when https is configured. My current config:



<Connector port="8443"
protocol="HTTP/1.1"
SSLEnabled="true"
maxThreads="50"
server="web"
allowTrace="false"
keystoreFile="/app/certs/keystore.jks"
keystorePass="********"
scheme="https"
secure="true"
clientAuth="false"
sslProtocol="TLS"
sslEnabledProtocols="TLSv1.1,TLSv1.2"
ciphers="TLS_..._SHA"
maxKeepAliveRequests="100"
connectionTimeout="20000"
compression="on"
compressableMimeType="application/json"
compressionMinSize="8192"
useSendfile="false"
maxSwallowSize="-1"
socket.soKeepAlive="true"/>









share|improve this question














Is is possible to configure Tomcat (7.075) for https AND enable gzip compression simultaneously? I can't figure out a valid combination of http connector properties in server.xml to get the job done. The four compression-related properties that work on http:



compression="on"
compressableMimeType="application/json"
compressionMinSize="8192"
useSendfile="false"


don't seem to have any effect when https is configured. My current config:



<Connector port="8443"
protocol="HTTP/1.1"
SSLEnabled="true"
maxThreads="50"
server="web"
allowTrace="false"
keystoreFile="/app/certs/keystore.jks"
keystorePass="********"
scheme="https"
secure="true"
clientAuth="false"
sslProtocol="TLS"
sslEnabledProtocols="TLSv1.1,TLSv1.2"
ciphers="TLS_..._SHA"
maxKeepAliveRequests="100"
connectionTimeout="20000"
compression="on"
compressableMimeType="application/json"
compressionMinSize="8192"
useSendfile="false"
maxSwallowSize="-1"
socket.soKeepAlive="true"/>






https tomcat7






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Aug 25 '17 at 20:16









JellyRaptorJellyRaptor

437516




437516













  • Related stackoverflow.com/questions/2767211/…

    – Hackerman
    Aug 25 '17 at 20:20



















  • Related stackoverflow.com/questions/2767211/…

    – Hackerman
    Aug 25 '17 at 20:20

















Related stackoverflow.com/questions/2767211/…

– Hackerman
Aug 25 '17 at 20:20





Related stackoverflow.com/questions/2767211/…

– Hackerman
Aug 25 '17 at 20:20












1 Answer
1






active

oldest

votes


















2














I use this configuration of server.xml:



1. http connector



<Connector port="80" protocol="HTTP/1.1"
connectionTimeout="20000"
compression="on" compressionMinSize="0" useSendfile="false"
redirectPort="443" />


2. https connector



<Connector port="443" protocol="org.apache.coyote.http11.Http11AprProtocol"
maxThreads="200" SSLEnabled="true" connectionTimeout="20000"
compression="on" compressionMinSize="0" useSendfile="false" >
<SSLHostConfig>
<Certificate certificateKeyFile="conf/key.crt"
certificateFile="conf/certificate.crt"
certificateChainFile="conf/chain.crt"
type="RSA" />
</SSLHostConfig>
</Connector>


You may want to change port 80 to 8080, and port 443 to 8443





UPD: If you use http2 protocol - add this line too:



<UpgradeProtocol className="org.apache.coyote.http2.Http2Protocol"
compression="on" compressionMinSize="0" useSendfile="false" />





share|improve this answer

























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f45888817%2fis-gzip-compression-with-https-possible-tomcat%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    I use this configuration of server.xml:



    1. http connector



    <Connector port="80" protocol="HTTP/1.1"
    connectionTimeout="20000"
    compression="on" compressionMinSize="0" useSendfile="false"
    redirectPort="443" />


    2. https connector



    <Connector port="443" protocol="org.apache.coyote.http11.Http11AprProtocol"
    maxThreads="200" SSLEnabled="true" connectionTimeout="20000"
    compression="on" compressionMinSize="0" useSendfile="false" >
    <SSLHostConfig>
    <Certificate certificateKeyFile="conf/key.crt"
    certificateFile="conf/certificate.crt"
    certificateChainFile="conf/chain.crt"
    type="RSA" />
    </SSLHostConfig>
    </Connector>


    You may want to change port 80 to 8080, and port 443 to 8443





    UPD: If you use http2 protocol - add this line too:



    <UpgradeProtocol className="org.apache.coyote.http2.Http2Protocol"
    compression="on" compressionMinSize="0" useSendfile="false" />





    share|improve this answer






























      2














      I use this configuration of server.xml:



      1. http connector



      <Connector port="80" protocol="HTTP/1.1"
      connectionTimeout="20000"
      compression="on" compressionMinSize="0" useSendfile="false"
      redirectPort="443" />


      2. https connector



      <Connector port="443" protocol="org.apache.coyote.http11.Http11AprProtocol"
      maxThreads="200" SSLEnabled="true" connectionTimeout="20000"
      compression="on" compressionMinSize="0" useSendfile="false" >
      <SSLHostConfig>
      <Certificate certificateKeyFile="conf/key.crt"
      certificateFile="conf/certificate.crt"
      certificateChainFile="conf/chain.crt"
      type="RSA" />
      </SSLHostConfig>
      </Connector>


      You may want to change port 80 to 8080, and port 443 to 8443





      UPD: If you use http2 protocol - add this line too:



      <UpgradeProtocol className="org.apache.coyote.http2.Http2Protocol"
      compression="on" compressionMinSize="0" useSendfile="false" />





      share|improve this answer




























        2












        2








        2







        I use this configuration of server.xml:



        1. http connector



        <Connector port="80" protocol="HTTP/1.1"
        connectionTimeout="20000"
        compression="on" compressionMinSize="0" useSendfile="false"
        redirectPort="443" />


        2. https connector



        <Connector port="443" protocol="org.apache.coyote.http11.Http11AprProtocol"
        maxThreads="200" SSLEnabled="true" connectionTimeout="20000"
        compression="on" compressionMinSize="0" useSendfile="false" >
        <SSLHostConfig>
        <Certificate certificateKeyFile="conf/key.crt"
        certificateFile="conf/certificate.crt"
        certificateChainFile="conf/chain.crt"
        type="RSA" />
        </SSLHostConfig>
        </Connector>


        You may want to change port 80 to 8080, and port 443 to 8443





        UPD: If you use http2 protocol - add this line too:



        <UpgradeProtocol className="org.apache.coyote.http2.Http2Protocol"
        compression="on" compressionMinSize="0" useSendfile="false" />





        share|improve this answer















        I use this configuration of server.xml:



        1. http connector



        <Connector port="80" protocol="HTTP/1.1"
        connectionTimeout="20000"
        compression="on" compressionMinSize="0" useSendfile="false"
        redirectPort="443" />


        2. https connector



        <Connector port="443" protocol="org.apache.coyote.http11.Http11AprProtocol"
        maxThreads="200" SSLEnabled="true" connectionTimeout="20000"
        compression="on" compressionMinSize="0" useSendfile="false" >
        <SSLHostConfig>
        <Certificate certificateKeyFile="conf/key.crt"
        certificateFile="conf/certificate.crt"
        certificateChainFile="conf/chain.crt"
        type="RSA" />
        </SSLHostConfig>
        </Connector>


        You may want to change port 80 to 8080, and port 443 to 8443





        UPD: If you use http2 protocol - add this line too:



        <UpgradeProtocol className="org.apache.coyote.http2.Http2Protocol"
        compression="on" compressionMinSize="0" useSendfile="false" />






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Nov 22 '18 at 15:06

























        answered Oct 17 '17 at 19:28









        DrakonovedDrakonoved

        1,1253520




        1,1253520
































            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f45888817%2fis-gzip-compression-with-https-possible-tomcat%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            If I really need a card on my start hand, how many mulligans make sense? [duplicate]

            Alcedinidae

            Can an atomic nucleus contain both particles and antiparticles? [duplicate]