我有一个使用 Node.js 构建的应用程序来提供服务器发送事件。该应用程序在我的本地环境中运行良好,但现在我已将其部署到 AWS Elastic Beanstalk 它无效。
对此进行了研究后,问题似乎在this post中进行了解释。
我现在修改了配置,但我仍然遇到EventSource
无法连接的问题,并最终超时。如果我 cURL 到达终点,它会按照我的预期运行,但是当我通过JavaScript连接时,它会失败。
这是我的Nginx配置: -
upstream nodejs {
server 127.0.0.1:8081;
keepalive 256;
}
server {
listen 8080;
if ($time_iso8601 ~ "^(\d{4})-(\d{2})-(\d{2})T(\d{2})") {
set $year $1;
set $month $2;
set $day $3;
set $hour $4;
}
access_log /var/log/nginx/healthd/application.log.$year-$month-$day-$hour healthd;
access_log /var/log/nginx/access.log main;
location / {
proxy_pass http://nodejs;
proxy_set_header Connection "";
proxy_http_version 1.1;
chunked_transfer_encoding off;
proxy_buffering off;
proxy_cache off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
gzip on;
gzip_comp_level 4;
gzip_types text/html text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
}
有没有人知道为什么这不起作用?
更新 为了澄清,它实际上确实最终连接,但随后立即失去连接和重试。