0

I'm trying to disable SSL compression in my server, but can't because SSLCompression option isn't yet avaliable with my current apache installation.

I found a patch that will give me that option http://pastebin.com/FnvUyjdJ, but have no ideia how to apply it. Could you guys help me?

Lucas Pelegrino
  • 202
  • 1
  • 4
  • 10
  • 1
    What exact version of Ubuntu and Apache are you running. According to Ubuntu, this was fixed in version of 2.2.22 provided to Ubutnu 12.04 and 12.10 - http://www.ubuntu.com/usn/usn-1627-1/ – Ryan Gibbons Mar 15 '13 at 05:47
  • According with Apache website "Available in httpd 2.4.3 and later" if I put "SSLCompression off" and try to restart, I get an error. My Ubuntu is 12.04.1. – Lucas Pelegrino Mar 15 '13 at 07:39

2 Answers2

0

This issue was resolved with a backported patch. You only need to update Apache to the version given in the security notice, or a later version.

Michael Hampton
  • 244,070
  • 43
  • 506
  • 972
0

This was provided by Ubuntu in the precise-security source in your /etc/apt/sources.list

https://launchpad.net/ubuntu/+source/apache2/2.2.22-1ubuntu1.2

Something like this

deb http://archive.ubuntu.com/ubuntu precise-security main restricted universe deb-src http://archive.ubuntu.com/ubuntu precise-security main restricted universe

Ryan Gibbons
  • 998
  • 9
  • 20