|
|
|
|
АРХИВ :: nginx-ru
|
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Получение конфигурации
- To: nginx-ru@xxxxxxxxx
- Subject: Re: Получение конфигурации
- From: Yuriy Taraday <yorik.sar@xxxxxxxxx>
- Date: Wed, 30 Jun 2010 09:40:53 +0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:content-type; bh=4OQCTZluqObagnmZrU624SR68QuRHKen2oWCcjIGtBw=; b=p0kT52C6MrHOdzXnJbQ9Lz7vo3PM3FzrkoHVXq6bmDJcfnqnfrfHG03qarnJjZoOk1 UbLTLy3sptHMhQUwg3jzg6Y589RIAdJ3+NenIkgjRADbeQqK3h19ZA+fewVD4aQzehjL 7m9VB+ZtD9MdZByFSDkumUXg/8bzJxJXzGdrw=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; b=riAE7K84vCw4Lc8VXdYzQoT0yTFY/S5j277ywtAN0dGnj+Urujw4SEXZZFUX/MbYUd NZ1N5w2sGnLvLUzqmmZj7gZtkYFWz3JUjDT7fFWbVsXNZugP5aS22yeTZ7fNC5ramh4L w7Ahlfknpa8P8B9R0VF6P8kOJ4/hokdbTGPjM=
- In-reply-to: <AANLkTinzAOBh0S-pg6PXtw7FKm5AEI35qJQWEXJTlYzF@xxxxxxxxxxxxxx>
- References: <AANLkTinzAOBh0S-pg6PXtw7FKm5AEI35qJQWEXJTlYzF@xxxxxxxxxxxxxx>
init_module вызывается до обработки конфигурации.
2010/6/30 Anton Dutov <anton.dutov@xxxxxxxxx>
Как можно получить конфигурацию виртуального хоста в обработчике module_init ?
(ngx_int_t (*init_module)(ngx_cycle_t *cycle); )
в структуре ngx_cycle_s имеется указатель на конфигурационный контекст модуля
struct ngx_cycle_s {
void ****conf_ctx;
так же имеется макрос
#define ngx_http_conf_get_module_srv_conf(cf, module)
\
((ngx_http_conf_ctx_t *) cf->ctx)->srv_conf[module.ctx_index]
можно было бы как нить так преобразовать
((ngx_http_conf_ctx_t ****)cycle->conf_ctx)->srv_conf[module.ctx_index]
если бы не четверной указатель
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|
|
|