Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My server side is nginx-1.2.4 + php-5.3.17. I have a php script to fetch another site's content via curl, which gzip isn't enabled. While nginx has gzip on. So the data flow looks like:

                  plain/html                plain/html             gzipped
xxx site's html ==============> php(curl) ==============> nginx ============> user's browser

But now, I want to enable gzip of php' curl for the sake of speedup a little bit. Then, the procedure:

                  gzipped                plain/html             gzipped
xxx site's html ===========> php(curl) ==============> nginx ============> user's browser

Because php's curl will automatically uncompress gzipped html to plain html, so when the html is passed to nginx, nginx will do the compression again.

What I am thinking is, can php keeps gzipped data and forward it to nginx, and no need for nginx to compress one more time. The expected procedure looks like:

                  gzipped                gzipped            gzipped
xxx site's html ===========> php(curl) ===========> nginx ===========> user's browser

Best regards.

share|improve this question
Why do you use php curl for that instead of simple nginx proxy_pass? – VBart Nov 15 '12 at 20:28
@VBart Hi, what I'm gonna really do is not that simple, I need to deal with the data retrieved for further use. – vvoody Nov 15 '12 at 21:27
proxy_store can store the data for further use. – VBart Nov 15 '12 at 21:30

1 Answer

up vote 1 down vote accepted

You must send the Accept-Encoding header with a curl request:

curl_setopt($cURL, CURLOPT_HTTPHEADER, array("Accept-Encoding: gzip"));

and do not set the CURLOPT_ENCODING option.

Also, you may be interested in nginx gunzip module.

share|improve this answer
Thank you. I can get the gzipped data now. But after forwarded by nginx, browser shows binary content instead of parsed html :( – vvoody Nov 15 '12 at 20:17
That is because you do not set content-encoding properly. You must add header("Content-Encoding: gzip"); to your php gzipped response. – VBart Nov 15 '12 at 20:25
Did I do in the right way? my php script and nginx.conf gist.github.com/4081124 – vvoody Nov 15 '12 at 20:42
Yes. It seems so. – VBart Nov 15 '12 at 21:34
Thanks. Hmm, it's weird. – vvoody Nov 15 '12 at 21:55
show 7 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.