nginx の一般的なエラーと解決策は次のとおりです:
エラー 1:
nginx: [error] CreateFile() "C:\mytools\nginx-1.8.1/logs/nginx.pid" failed (2: The system cannot find the file specified)
または
nginx: [error] Open() "C:\mytools\nginx-1.8.1/logs/nginx.pid" failed
解決策:
コマンドを使用して /logs/nginx.pid ファイルを作成します
nginx -c conf/nginx.conf
エラー 2:
nginx: [alert] could not open error log file: CreateFile() "logs/error.log" failed (3: The system cannot find the path specified) [emerg] : invalid number of arguments in "root" directive in C:\mytools\nginx-1.8.1\conf\nginx.conf:45
解決策:
設定ファイルのルートディレクトリを指定する場合、末尾を「\」にすることはできません。
関連する推奨事項: nginx チュートリアル
以上がnginx の一般的なエラーと解決策の紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。