Will mod_gzip compress the cookies

apache, cookies, php

Solution

No, it compresses only the content. Cookies are sent in the headers, which are never compressed.

Problem

I have a php web application that uses big cookies to store a lot of users data. If I set mod_gzip on the apache server, will it compress only the page content or will it compress the cookies also?

Original source