Complete the code to enable gzip compression in nginx.
gzip [1];Setting gzip on; enables gzip compression in nginx.
Complete the code to set the minimum length of a response to be gzipped to 1000 bytes.
gzip_min_length [1];The directive gzip_min_length 1000; sets the minimum response size to 1000 bytes for gzip compression.
Fix the error in the gzip_types directive to include correct MIME types.
gzip_types [1];In nginx, MIME types in gzip_types are space-separated without commas or other separators.
Fill both blanks to set gzip compression for JSON and JavaScript files with a minimum length of 512 bytes.
gzip_types [1]; gzip_min_length [2];
Use space-separated MIME types for gzip_types and set gzip_min_length to 512 bytes.
Fill all three blanks to enable gzip, set minimum length to 256 bytes, and compress HTML and CSS files.
gzip [1]; gzip_min_length [2]; gzip_types [3];
Enable gzip with on, set minimum length to 256 bytes, and specify MIME types space-separated.