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 ?
質問する
249 次
2 に答える
0
質問が出されてから長い時間が経っていることは知っていますが、これにかなりの時間を費やした後、問題は次のとおりです。
モジュールのconfig
ファイルで、次の行を提供する必要があります。
HTTP_AUX_FILTER_MODULES="$HTTP_AUX_FILTER_MODULES your_module_name"
HTTP_MODULES
また、フィルターしかない場合は、行を削除できます。
于 2016-07-26T22:56:14.910 に答える
-1
前
ps awx | grep nginx
nginx プロセス ID を確認するには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 に答える