我们有一个应用程序,服务与媒体类型JSON:application/vnd.example.v1.0+json
和application/vnd.example.v2.0+json
等.
如果我们想使用nginx的http://nginx.org/en/docs/http/ngx_http_ssi_module.html#ssi_types和http://nginx.org/en/docs/http/ngx_http_gzip_module.html#gzip_types.我们是否必须附加每个可能的版本号或者是否存在类似通配符的内容?
代替:
gzip_types "application/vnd.example.v1.0+json" "application/vnd.example.v2.0+json" "application/vnd.example.v3.0+json"
是这样的
gzip_types "application/vnd.example*+json"
可能?