我想增加AWS弹性beanstalk中nodejs环境中nginx的默认超时,我正在遵循本指南:https://medium.com/swlh/using-ebextensions-to-extend-nginx-default-configuration- in-aws-elastic-beanstalk-189b844ab6ad但它不起作用,如果我上传我的应用程序,我会收到此错误在实例 id\'i-xxxxxxxxxx\' 上执行命令失败。中止操作。有什么建议吗?\ni\m 正在尝试使用 .ebextension,这是我的 01-timeout.config 文件的代码
\nfiles:\n"/etc/nginx/conf.d/01-timeout.conf":\n mode: \xe2\x80\x9c000644\xe2\x80\x9d\n owner: root\n group: root\n content: |\n keepalive_timeout 600s;\n proxy_connect_timeout 600s;\n proxy_send_timeout 600s; \n proxy_read_timeout 600s; \n fastcgi_send_timeout 600s; \n fastcgi_read_timeout 600s;\ncontainer_commands:\n nginx_reload:\n command: "sudo service nginx reload"\nRun Code Online (Sandbox Code Playgroud)\n谢谢你的帮助。
\n现在更新部署就可以了,但是超时不起作用,就像以前一样,超时为60秒,阅读日志似乎是重新加载了nginx,这是消息:命令 nginx_reload 成功,有什么问题的线索吗?
\n