0

I am working on a nginx filter module. I could successfully install my module by following this - http://www.evanmiller.org/nginx-modules-guide.html tutorial. But it seems that all the other filter modules are not called now except the one which I have added. How can I debug this ?

4

2 に答える 2

0

質問が出されてから長い時間が経っていることは知っていますが、これにかなりの時間を費やした後、問題は次のとおりです。

モジュールのconfigファイルで、次の行を提供する必要があります。

HTTP_AUX_FILTER_MODULES="$HTTP_AUX_FILTER_MODULES your_module_name"

HTTP_MODULESまた、フィルターしかない場合は、行を削除できます。

于 2016-07-26T22:56:14.910 に答える
-1

  1. ps awx | grep nginx nginx プロセス ID を確認するには

  2. Nginx サーバーを停止する

gdb <path>  // may be ->sr/local/nginx/sbin/nginx
(gdb) set-follow-fork-mode child         
set detach-on-fork  off               
set logging on                           
set confirm off                         
rbreak ngx_http*  // you want to break point ..                       
run        
于 2013-11-06T07:08:51.967 に答える