Opened 7 years ago

Last modified 18 months ago

#1119 new enhancement

Gzip_types support pattern matching

Reported by: jshen.thoughtworks.com@… Owned by:
Priority: minor Milestone: 1.11
Component: other Version: 1.11.x
Keywords: gzip, mime type Cc:
uname -a: Linux 0ab47793fb91 4.1.19-boot2docker #1 SMP Mon Mar 7 17:44:33 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
nginx -V: nginx version: nginx/1.11.5
built by gcc 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.2)
built with OpenSSL 1.0.2g-fips 1 Mar 2016 (running with OpenSSL 1.0.2g 1 Mar 2016)
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt='-g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now -Wl,--as-needed'

Description

We have a backend api which will return response content-type with different mime types and joint with different version, for example the pattern may like this application/vnd.search+json; version=v5. For we have different mime types and different versions and may have over 50 combinations, if we configure nginx.cnf file with the exactly type, it will result to a very large configuration file.
So can we support pattern matching say that we can set application/vnd.search+json in gzip_types and it will match application/vnd.search+json followed by all the versions, or set application/vnd.search+json;* to match all the possible types

Change History (1)

comment:1 by Maxim Dounin, 18 months ago

See also #2391.

Note: See TracTickets for help on using tickets.