Welcome! Log In Create A New Profile

Advanced

[PATCH 16 of 31] Gzip static: "always" parameter in "gzip_static" directive

Maxim Dounin
February 15, 2011 08:42AM
# HG changeset patch
# User Maxim Dounin <mdounin@mdounin.ru>
# Date 1297776702 -10800
# Node ID fede1b3806994ff12e79bc2c96f408c6d477f5fa
# Parent 9d903cd59616d3a1e2dca508d324e9bcf886c4ac
Gzip static: "always" parameter in "gzip_static" directive.

With "always" gzip static returns gzipped content in all cases, without
checking if client supports it. It is usefull if you has no gunzipped files
on disk anyway.

diff --git a/src/http/modules/ngx_http_gzip_static_module.c b/src/http/modules/ngx_http_gzip_static_module.c
--- a/src/http/modules/ngx_http_gzip_static_module.c
+++ b/src/http/modules/ngx_http_gzip_static_module.c
@@ -10,7 +10,7 @@


typedef struct {
- ngx_flag_t enable;
+ ngx_uint_t enable;
} ngx_http_gzip_static_conf_t;


@@ -21,14 +21,22 @@ static char *ngx_http_gzip_static_merge_
static ngx_int_t ngx_http_gzip_static_init(ngx_conf_t *cf);


+static ngx_conf_enum_t ngx_http_gzip_static[] = {
+ { ngx_string("off"), 0 },
+ { ngx_string("on"), 1 },
+ { ngx_string("always"), 2 },
+ { ngx_null_string, 0 }
+};
+
+
static ngx_command_t ngx_http_gzip_static_commands[] = {

{ ngx_string("gzip_static"),
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_FLAG,
- ngx_conf_set_flag_slot,
+ ngx_conf_set_enum_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_gzip_static_conf_t, enable),
- NULL },
+ &ngx_http_gzip_static },

ngx_null_command
};
@@ -95,7 +103,12 @@ ngx_http_gzip_static_handler(ngx_http_re
return NGX_DECLINED;
}

- rc = ngx_http_gzip_ok(r);
+ if (gzcf->enable == 1) {
+ rc = ngx_http_gzip_ok(r);
+
+ } else {
+ rc = NGX_OK;
+ }

clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);

@@ -160,10 +173,12 @@ ngx_http_gzip_static_handler(ngx_http_re
return NGX_DECLINED;
}

- r->gzip_vary = 1;
+ if (gzcf->enable == 1) {
+ r->gzip_vary = 1;

- if (rc != NGX_OK) {
- return NGX_DECLINED;
+ if (rc != NGX_OK) {
+ return NGX_DECLINED;
+ }
}

ngx_log_debug1(NGX_LOG_DEBUG_HTTP, log, 0, "http static fd: %d", of.fd);
@@ -261,7 +276,7 @@ ngx_http_gzip_static_create_conf(ngx_con
return NULL;
}

- conf->enable = NGX_CONF_UNSET;
+ conf->enable = NGX_CONF_UNSET_UINT;

return conf;
}
@@ -273,7 +288,7 @@ ngx_http_gzip_static_merge_conf(ngx_conf
ngx_http_gzip_static_conf_t *prev = parent;
ngx_http_gzip_static_conf_t *conf = child;

- ngx_conf_merge_value(conf->enable, prev->enable, 0);
+ ngx_conf_merge_uint_value(conf->enable, prev->enable, 0);

return NGX_CONF_OK;
}

_______________________________________________
nginx-devel mailing list
nginx-devel@nginx.org
http://nginx.org/mailman/listinfo/nginx-devel
Subject Author Views Posted

[PATCH 00 of 31] generic patch queue for 0.9.4

Maxim Dounin 2947 February 15, 2011 08:38AM

[PATCH 01 of 31] Reuse keepalive connections if worker connections aren't enough

Maxim Dounin 894 February 15, 2011 08:38AM

[PATCH 02 of 31] Complain on invalid log levels

Maxim Dounin 987 February 15, 2011 08:38AM

[PATCH 03 of 31] Fix u->one_addr handling in ngx_inet_resolve_host()

Maxim Dounin 737 February 15, 2011 08:38AM

[PATCH 04 of 31] Fix incorrect 201 replies from dav module

Maxim Dounin 774 February 15, 2011 08:38AM

[PATCH 05 of 31] Fix error_page status code change in redirect

Maxim Dounin 765 February 15, 2011 08:38AM

[PATCH 06 of 31] Fix double content when return is used in error_page redirection

Maxim Dounin 743 February 15, 2011 08:40AM

[PATCH 07 of 31] Drop incorrect special case for return 204

Maxim Dounin 782 February 15, 2011 08:40AM

[PATCH 08 of 31] Clear old Location header (if any) while adding new one

Maxim Dounin 821 February 15, 2011 08:40AM

[PATCH 09 of 31] Better handle various per-server ssl options with SNI

Maxim Dounin 847 February 15, 2011 08:40AM

[PATCH 10 of 31] Better handle late upstream creation

Maxim Dounin 838 February 15, 2011 08:40AM

[PATCH 12 of 31] Fix predicate testing (*_cache_bypass, *_no_cache)

Maxim Dounin 838 February 15, 2011 08:42AM

[PATCH 11 of 31] Gzip filter: handle empty flush buffers

Maxim Dounin 823 February 15, 2011 08:42AM

[PATCH 13 of 31] Fix connection drops with AIO

Maxim Dounin 893 February 15, 2011 08:42AM

[PATCH 14 of 31] Fix socket leak with "aio sendfile" and "limit_rate" directives

Maxim Dounin 941 February 15, 2011 08:42AM

[PATCH 15 of 31] Correctly handle Content-Encoding set from perl

Maxim Dounin 809 February 15, 2011 08:42AM

[PATCH 16 of 31] Gzip static: "always" parameter in "gzip_static" directive

Maxim Dounin 921 February 15, 2011 08:42AM

[PATCH 17 of 31] Memcached: memcached_gzip_flag directive

Maxim Dounin 920 February 15, 2011 08:42AM

[PATCH 18 of 31] Mail: handle smtp multiline replies

Maxim Dounin 859 February 15, 2011 08:44AM

[PATCH 19 of 31] Additional headers for proxy_ignore_headers/fastcgi_ignore_headers

Maxim Dounin 893 February 15, 2011 08:44AM

[PATCH 20 of 31] Fix cpu hog with all upstream servers marked "down"

Maxim Dounin 859 February 15, 2011 08:44AM

[PATCH 21 of 31] Cache: correctly set conf_file while adding paths

Maxim Dounin 811 February 15, 2011 08:44AM

[PATCH 22 of 31] Fastcgi: fix large stderr handling without cache

Maxim Dounin 830 February 15, 2011 08:44AM

[PATCH 23 of 31] Upstream: fix proxy_store leaving temporary files for subrequests

Maxim Dounin 972 February 15, 2011 08:44AM

[PATCH 24 of 31] Cache: fix sending of empty responses

Maxim Dounin 857 February 15, 2011 08:46AM

[PATCH 25 of 31] Cache: fix sending of stale responses

Maxim Dounin 838 February 15, 2011 08:46AM

[PATCH 26 of 31] Variables: honor no_cacheable for not_found variables

Maxim Dounin 845 February 15, 2011 08:46AM

[PATCH 27 of 31] Core: protect from subrequest loops

Maxim Dounin 883 February 15, 2011 08:46AM

[PATCH 29 of 31] Autoindex: escape '?' in file names

Maxim Dounin 874 February 15, 2011 08:46AM

[PATCH 28 of 31] Core: resolve various cycles with named locations and post_action

Maxim Dounin 841 February 15, 2011 08:46AM

[PATCH 30 of 31] Autoindex: escape html in file names

Maxim Dounin 931 February 15, 2011 08:48AM

[PATCH 31 of 31] Unbreak build with embedded perl and --with-openssl

Maxim Dounin 793 February 15, 2011 08:48AM

Re: [PATCH 00 of 31] generic patch queue for 0.9.4

Kirill A. Korinskiy 795 February 15, 2011 09:04AM

Re: [PATCH 00 of 31] generic patch queue for 0.9.4

Piotr Sikora 795 February 15, 2011 09:22AM

Re: [PATCH 00 of 31] generic patch queue for 0.9.4

Maxim Dounin 774 February 15, 2011 11:24AM

Re: [PATCH 00 of 31] generic patch queue for 0.9.4

deltay 931 February 15, 2011 08:40PM

Re: [PATCH 00 of 31] generic patch queue for 0.9.4

António P. P. Almeida 832 February 21, 2011 10:08AM

Re: [PATCH 00 of 31] generic patch queue for 0.9.4

Maxim Dounin 1158 February 21, 2011 11:24AM



Sorry, you do not have permission to post/reply in this forum.

Online Users

Guests: 173
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready