Skip to content

Commit

Permalink
fix inverted ssl compression
Browse files Browse the repository at this point in the history
Apache 2.4 defaults SSLCompression Off. The ssl module provides a
parameter for ssl_compression which defaults false. If it is set
to true, the template actually would add another SSLCompression Off
stanza (not the expected SSLCompression On).
  • Loading branch information
sdague committed Mar 29, 2014
1 parent 3b6a46f commit fa0fd41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/mod/ssl.conf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
SSLSessionCache "shmcb:<%= @session_cache %>"
SSLSessionCacheTimeout 300
<% if @ssl_compression -%>
SSLCompression Off
SSLCompression On
<% end -%>
<% if @apache_version >= '2.4' -%>
Mutex <%= @ssl_mutex %>
Expand Down

0 comments on commit fa0fd41

Please sign in to comment.