我有一个使用Nginx运行Node.js应用程序的EC2实例。可通过Elastic Load Balancer(在端口80和443(通过AWS Certificate Manager获取的SSL证书)上)公开访问该应用程序。我的应用程序(在端口3000本地运行)在HTTP(端口80)上正确打开,但在HTTPS(端口443)上显示“ 502 Bad Gateway”。我的Nginx配置文件(位于)如下所示:
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name subdomain.example.com www.subdomain.example.com;
location / {
proxy_pass http://localhost:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
即使我已经通过ACM采购了证书,为什么我的应用程序仍无法通过HTTPS访问?