ホームページ >バックエンド開発 >PHPチュートリアル >nginx 設定ファイルをすばやく表示する方法
nginx 設定は nginx.conf ファイルに配置されます。通常、次のコマンドを使用してサーバーに存在する nginx.conf ファイルを表示できます。
locate nginx.conf /usr/local/etc/nginx/nginx.conf /usr/local/etc/nginx/nginx.conf.default...
サーバーに複数の nginx.conf ファイルがある場合、どの設定ファイルが実際に呼び出されるのかがわからないため、実際に呼び出される設定ファイルを見つける必要があります# # #は変更可能です。
実際に nginx によって呼び出される設定ファイルを表示します。1. nginx のパスを確認しますps aux|grep nginx root 352 0.0 0.0 2468624 924 ?? S 10:43上午 0:00.08 nginx: worker process root 232 0.0 0.0 2459408 532 ?? S 10:43上午 0:00.02 nginx: master process /usr/local/opt/nginx/bin/nginx -g daemon off; root 2345 0.0 0.0 2432772 640 s000 S+ 1:01下午 0:00.00 grep nginx
/usr/local/opt/nginx です。 /bin/ nginx
2. nginx 設定ファイルのパスを確認しますnginx の-t パラメータを使用して設定チェックを実行し、実際に呼び出された設定ファイルを確認します。パスと呼び出しが機能するかどうか。
/usr/local/opt/nginx/bin/nginx -t nginx: the configuration file /usr/local/etc/nginx/nginx.conf syntax is ok nginx: configuration file /usr/local/etc/nginx/nginx.conf test is successfulテストでは、nginx 構成ファイルのパスが
/usr/local/etc/nginx/nginx.conf であり、呼び出しが有効であることがわかります。
nginx 設定はnginx.conf ファイルに配置されます。通常、次のコマンドを使用してサーバーに存在する nginx.conf ファイルを表示できます。
locate nginx.conf /usr/local/etc/nginx/nginx.conf /usr/local/etc/nginx/nginx.conf.default...サーバーに複数の nginx.conf ファイルがある場合、どの設定ファイルが実際に呼び出されるのかがわからないため、
実際に呼び出される設定ファイルを見つける必要があります# # #は変更可能です。 実際に nginx によって呼び出される設定ファイルを表示します。
ps aux|grep nginx root 352 0.0 0.0 2468624 924 ?? S 10:43上午 0:00.08 nginx: worker process root 232 0.0 0.0 2459408 532 ?? S 10:43上午 0:00.02 nginx: master process /usr/local/opt/nginx/bin/nginx -g daemon off; root 2345 0.0 0.0 2432772 640 s000 S+ 1:01下午 0:00.00 grep nginx
2. nginx 設定ファイルのパスを確認します
パラメータを使用して設定チェックを実行し、実際に呼び出された設定ファイルを確認します。パスと呼び出しが機能するかどうか。 /usr/local/opt/nginx/bin/nginx -t
nginx: the configuration file /usr/local/etc/nginx/nginx.conf syntax is ok
nginx: configuration file /usr/local/etc/nginx/nginx.conf test is successful
テストでは、nginx 構成ファイルのパスが
であり、呼び出しが有効であることがわかります。 この記事では、nginx の設定ファイルをすばやく表示する方法について説明します。関連コンテンツについては、PHP 中国語 Web サイトを参照してください。
関連する推奨事項:
php 複数の 1 次元配列を 2 次元配列に結合する方法php Return array で複数カラムを指定する方法 mysql secure-file-priv オプションの問題の解決方法以上がnginx 設定ファイルをすばやく表示する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。