Is gzip compression with https possible Tomcat
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
add a comment |
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
Related stackoverflow.com/questions/2767211/…
– Hackerman
Aug 25 '17 at 20:20
add a comment |
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
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
https tomcat7
asked Aug 25 '17 at 20:16
JellyRaptorJellyRaptor
434515
434515
Related stackoverflow.com/questions/2767211/…
– Hackerman
Aug 25 '17 at 20:20
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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" />
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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" />
add a comment |
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" />
add a comment |
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" />
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" />
edited Nov 22 '18 at 15:06
answered Oct 17 '17 at 19:28
DrakonovedDrakonoved
1,1273520
1,1273520
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Related stackoverflow.com/questions/2767211/…
– Hackerman
Aug 25 '17 at 20:20