I have an nginx + passenger installed on Amazon Linux EC2 server, running a Rails application. The application yields JSON responses.
The JSON response is rendered with length header:
# test_controller.rb
# result contains a large 400k JSON string
headers["Content-Length"] = result.size.to_s
render :json => result
I tried enabling gzip, but the response is still not compressed. I checked it with GIDZipTest.
# nginx.conf
gzip on;
gzip_http_version 1.1;
gzip_comp_level 1;
gzip_proxied any;
gzip_vary on;
gzip_min_length 500;
gzip_types application/x-javascript application/json;