web-dev-qa-db-ja.com

Nginxスタートアッププロンプト[emerg]構成に「イベント」セクションがない

X-WAFデプロイメントでは、新しいnginx構成ファイルを作成する必要があります。ただし、nginx構成をテストすると、エラーが見つかり、nginxを起動できません。

http://blog.51cto.com/14071176/2318054 を参照しています。記事の構成に従って段階的に実行しましたが、問題がありました。

root@VM-0-6-ubuntu:~# /usr/local/openresty/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/openresty/nginx/conf/nginx.conf syntax is ok
nginx: [emerg] no "events" section in configuration
nginx: configuration file /usr/local/openresty/nginx/conf/nginx.conf test failed

root@VM-0-6-ubuntu:~# /usr/local/openresty/nginx/sbin/nginx
nginx: [emerg] no "events" section in configuration

通常の状況では、/ usr/local/openresty/nginx/sbin/nginx -tを実行すると2つの成功がありますが、私の場合は成功と失敗です。

22
Dora

events { }行の上にhttp {を追加するだけです。

//このコメントは私にとってはうまくいきました。

41
Stepan Suvorov

私のために解決してください:

events {}
http {
    server {
        # Your code here
    }
}
1
Ruan Nawe