diff options
| author | Alejandro Colomar <alx@nginx.com> | 2023-08-28 17:34:20 +0200 |
|---|---|---|
| committer | Alejandro Colomar <alx@kernel.org> | 2023-12-19 15:02:41 +0100 |
| commit | 9ec5c6013be752b8e069103a2ec7c9bff5b01679 (patch) | |
| tree | e6caae1b7553ac281c58d20998f3f2ca936e6085 /src/nxt_http_compress_gzip.c | |
| parent | 04e9f235ddbb3ae1343897f755c9ccf80c99f021 (diff) | |
| download | unit-9ec5c6013be752b8e069103a2ec7c9bff5b01679.tar.gz unit-9ec5c6013be752b8e069103a2ec7c9bff5b01679.tar.bz2 | |
HTTP: compress: added "mime_types" rule.
Signed-off-by: Alejandro Colomar <alx@nginx.com>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to '')
| -rw-r--r-- | src/nxt_http_compress_gzip.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/nxt_http_compress_gzip.c b/src/nxt_http_compress_gzip.c index 2d0d65ae..c1ff962b 100644 --- a/src/nxt_http_compress_gzip.c +++ b/src/nxt_http_compress_gzip.c @@ -66,6 +66,16 @@ nxt_http_compress_gzip(nxt_task_t *task, nxt_http_request_t *r, return NXT_OK; } + ret = nxt_http_compressible_mtype(task, r, conf->mtrule); + switch (ret) { + case NXT_ERROR: + return NXT_ERROR; + case 0: + return NXT_OK; + case 1: + break; + } + r->resp.content_length = NULL; r->resp.content_length_n = -1; |
