Using ngx_conf_t

Hello all,
Is it possible to get ngx_conf_t in a handler? If it is, how to get it?

Thank you.
M.

Posted at Nginx Forum:

On 07/03/2012 10:59 AM, munkhabi wrote:

Hello all,
Is it possible to get ngx_conf_t in a handler? If it is, how to get it?
ngx_http_get_module_(loc|srv|http)_conf

Hello!

On Tue, Jul 03, 2012 at 01:59:41PM -0400, munkhabi wrote:

Hello all,
Is it possible to get ngx_conf_t in a handler? If it is, how to get it?

The ngx_conf_t is a type of a structure used for configuration
parsing. It only exists during configuration parsing, and
obviously you can’t access it after configuration parsing is
complete.

Maxim D.