Hello everybody,
I am trying to add variable support in Nginx cache module I added the following codes into ngx_http_file_cache file
<<
ngx_http_complex_value_t cv;
ngx_http_compile_complex_value_t ccv;
ngx_memzero(&ccv, sizeof(ngx_http_compile_complex_value_t));
ccv.cf = cf;
ccv.value = &value[n];
ccv.complex_value = &cv;
if (ngx_http_compile_complex_value(&ccv) != NGX_OK) {
return NGX_CONF_ERROR;
}
>>
I am just learning how to develop Nginx and I need this feature. I was wondering if anybody could help me
with respect