デバッギングログ | english русский 简体中文 עברית 日本語 türkçe ニュース [en] nginx について ダウンロード [en] セキュリティ情報 [en] ドキュメント faq リンク [en] 本 [en] サポート [en] trac wiki nginx.com |
This translation may be out of date. Check the English version for recent changes. デバッギングログを有効にするには、nginx をデバッグオプションを付けて設定する必要があります: ./configure --with-debug ...
次に error_log /path/to/log debug;
nginx の Windows バイナリバージョンでは常にデバッグログモードがサポートされてビルドされているので、 別のレベル、例えば server レベルでログを定義するとそのサーバでのデバッギングログが無効になりますので注意してください: error_log /path/to/log debug; http { server { error_log /path/to/log; ...
このサーバログをコメントアウトするか error_log /path/to/log debug; http { server { error_log /path/to/log debug; ...
また、特定のアドレスだけデバッギングログを有効にすることもできます: error_log /path/to/log; events { debug_connection 192.168.1.1; debug_connection 192.168.10.0/24; }
|