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
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 の使用方法チュートリアル 列をご覧ください。
以上がnginxの設定ファイルはどこにあるのでしょうか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。