Skip to content
This repository was archived by the owner on Apr 25, 2018. It is now read-only.

Commit bf9324d

Browse files
committed
Renaming enable_static_etags to FileETag for consistency with Apache.
1 parent 142a487 commit bf9324d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ngx_http_static_etags_module.c

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* the `Location` block.
1515
*/
1616
typedef struct {
17-
ngx_uint_t enable_static_etags;
17+
ngx_uint_t FileETag;
1818
ngx_str_t etag_format;
1919
} ngx_http_static_etags_loc_conf_t;
2020

@@ -27,11 +27,11 @@ static ngx_int_t ngx_http_static_etags_init(ngx_conf_t *cf);
2727
static ngx_int_t ngx_http_static_etags_header_filter(ngx_http_request_t *r);
2828

2929
static ngx_command_t ngx_http_static_etags_commands[] = {
30-
{ ngx_string( "enable_static_etags" ),
30+
{ ngx_string( "FileETag" ),
3131
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_FLAG,
3232
ngx_conf_set_flag_slot,
3333
NGX_HTTP_LOC_CONF_OFFSET,
34-
offsetof( ngx_http_static_etags_loc_conf_t, enable_static_etags ),
34+
offsetof( ngx_http_static_etags_loc_conf_t, FileETag ),
3535
NULL },
3636

3737
{ ngx_string( "etag_format" ),
@@ -81,20 +81,20 @@ static void * ngx_http_static_etags_create_loc_conf(ngx_conf_t *cf) {
8181
if ( NULL == conf ) {
8282
return NGX_CONF_ERROR;
8383
}
84-
conf->enable_static_etags = NGX_CONF_UNSET_UINT;
84+
conf->FileETag = NGX_CONF_UNSET_UINT;
8585
return conf;
8686
}
8787

8888
static char * ngx_http_static_etags_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child) {
8989
ngx_http_static_etags_loc_conf_t *prev = parent;
9090
ngx_http_static_etags_loc_conf_t *conf = child;
9191

92-
ngx_conf_merge_uint_value( conf->enable_static_etags, prev->enable_static_etags, 0 );
92+
ngx_conf_merge_uint_value( conf->FileETag, prev->FileETag, 0 );
9393
ngx_conf_merge_str_value( conf->etag_format, prev->etag_format, "%s_%X_%X" );
9494

95-
if ( conf->enable_static_etags != 0 && conf->enable_static_etags != 1 ) {
95+
if ( conf->FileETag != 0 && conf->FileETag != 1 ) {
9696
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
97-
"enable_static_etags must be 'on' or 'off'");
97+
"FileETag must be 'on' or 'off'");
9898
return NGX_CONF_ERROR;
9999
}
100100

@@ -124,7 +124,7 @@ static ngx_int_t ngx_http_static_etags_header_filter(ngx_http_request_t *r) {
124124
loc_conf = ngx_http_get_module_loc_conf( r, ngx_http_static_etags_module );
125125

126126
// Is the module active?
127-
if ( 1 == loc_conf->enable_static_etags ) {
127+
if ( 1 == loc_conf->FileETag ) {
128128
p = ngx_http_map_uri_to_path( r, &path, &root, 0 );
129129
if ( NULL == p ) {
130130
return NGX_HTTP_INTERNAL_SERVER_ERROR;

0 commit comments

Comments
 (0)