NGINX Proxy Pass ไปยังแอป NodeJS: ส่งคืนข้อผิดพลาด 502
ฉันกำลังพยายามตั้งค่า NGINX เป็นส่วนหน้าของแอป NodeJS ซึ่งเปิดใช้งานอยู่127.0.0.1:3000แต่ฉันไม่สามารถแก้ไขข้อผิดพลาด 502 นี้ได้ NGINX สามารถเข้าถึงได้ในท้องถิ่นที่http://55.55.55.5/หรือhttp://dev.example dev.example (ไฟล์ใน: / etc / nginx / sites-available และ symlinked ไปยังเว็บไซต์ที่เปิดใช้งาน) upstream up_dev.example { server 127.0.0.1:3000; } server { listen 0.0.0.0:80; server_name dev.example example; access_log /var/log/nginx/dev.example.log; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; …