问题:nginx 启动失败 报错信息:双击 nginx.exe,发现任务管理器中没有 nginx 进程,在 nginx 安装目录下的 logs 文件夹有报错信息:no “events” section in configuration 报错截图: 报错原因:没有 events 上下文 解决方案:修改 nginx.conf 配置文件,增加 events 配置。 events { worker_connections 1024; ## Default: 1024 }