problem with my module configure reading

supergui nginx-forum at nginx.us
Mon Aug 10 14:42:35 MSD 2009


i have  created my module configuration with "create location configure" handler.
then i want to have something to initiate wiht callback "postconfiguration".

my function likes this:
///////////////////////////////////////////
typedef struct{
     ngx_int_t var;
}
gdrive_test_module_loc_conf_t;
ngx_int_t gdrive_gfs_proxy_init(ngx_conf_t* cf)
{
     gdrive_test_module_loc_conf_t *ggplc=ngx_http_conf_get_module_loc_conf(cf, gdrive_test_module_loc_conf_t);
     ngx_log_debug0(NGX_LOG_DEBUG, cf->log, 0, "%d" ,ggplc->var);

     return NGX_OK;
}
////////////////////////////////////////////////////

the problem is, i don't know why, i get my configure gglpc with ngx_http_conf_get_module_loc_conf, but the var value i have set in nginx.conf can't be readed, it is still UNSET value.

Posted at Nginx Forum: http://forum.nginx.org//read.php?2,4843,4843#msg-4843






More information about the nginx mailing list