14
14
* the `Location` block.
15
15
*/
16
16
typedef struct {
17
- ngx_uint_t enable_static_etags ;
17
+ ngx_uint_t FileETag ;
18
18
ngx_str_t etag_format ;
19
19
} ngx_http_static_etags_loc_conf_t ;
20
20
@@ -27,11 +27,11 @@ static ngx_int_t ngx_http_static_etags_init(ngx_conf_t *cf);
27
27
static ngx_int_t ngx_http_static_etags_header_filter (ngx_http_request_t * r );
28
28
29
29
static ngx_command_t ngx_http_static_etags_commands [] = {
30
- { ngx_string ( "enable_static_etags " ),
30
+ { ngx_string ( "FileETag " ),
31
31
NGX_HTTP_MAIN_CONF |NGX_HTTP_SRV_CONF |NGX_HTTP_LOC_CONF |NGX_CONF_FLAG ,
32
32
ngx_conf_set_flag_slot ,
33
33
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 ),
35
35
NULL },
36
36
37
37
{ ngx_string ( "etag_format" ),
@@ -81,20 +81,20 @@ static void * ngx_http_static_etags_create_loc_conf(ngx_conf_t *cf) {
81
81
if ( NULL == conf ) {
82
82
return NGX_CONF_ERROR ;
83
83
}
84
- conf -> enable_static_etags = NGX_CONF_UNSET_UINT ;
84
+ conf -> FileETag = NGX_CONF_UNSET_UINT ;
85
85
return conf ;
86
86
}
87
87
88
88
static char * ngx_http_static_etags_merge_loc_conf (ngx_conf_t * cf , void * parent , void * child ) {
89
89
ngx_http_static_etags_loc_conf_t * prev = parent ;
90
90
ngx_http_static_etags_loc_conf_t * conf = child ;
91
91
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 );
93
93
ngx_conf_merge_str_value ( conf -> etag_format , prev -> etag_format , "%s_%X_%X" );
94
94
95
- if ( conf -> enable_static_etags != 0 && conf -> enable_static_etags != 1 ) {
95
+ if ( conf -> FileETag != 0 && conf -> FileETag != 1 ) {
96
96
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'" );
98
98
return NGX_CONF_ERROR ;
99
99
}
100
100
@@ -124,7 +124,7 @@ static ngx_int_t ngx_http_static_etags_header_filter(ngx_http_request_t *r) {
124
124
loc_conf = ngx_http_get_module_loc_conf ( r , ngx_http_static_etags_module );
125
125
126
126
// Is the module active?
127
- if ( 1 == loc_conf -> enable_static_etags ) {
127
+ if ( 1 == loc_conf -> FileETag ) {
128
128
p = ngx_http_map_uri_to_path ( r , & path , & root , 0 );
129
129
if ( NULL == p ) {
130
130
return NGX_HTTP_INTERNAL_SERVER_ERROR ;
0 commit comments