คำถามติดแท็ก 502

3
nginx: ไม่มีสตรีมสดขณะเชื่อมต่อกับอัปสตรีม
ข้อผิดพลาดเกตเวย์ไม่ถูกต้อง 502 แสดงเมื่อสลับระหว่างหน้าเว็บไซต์และบางครั้งในหน้าแรก แต่ไม่ใช่สำหรับคำขอแรกในหน้าแรกเป็นเพียงเมื่อมีการเปลี่ยนเส้นทางหน้าอื่นไป และมันเกิดขึ้นสำหรับไฟล์จาวาสคริปต์บางไฟล์ load balancing ถูกกำหนดค่าไว้ใน upstreams สอง php1 php2 ทั้งสองเป็น apache server เมื่อฉันตรวจสอบบันทึกข้อผิดพลาดที่ฉันชอบ: no live upstreams while connecting to upstream [error] 27212#0: *314 no live upstreams while connecting to upstream, client: ip_address , server: example.com, request: "GET / HTTP/1.1", upstream: "http://example.com", host: "example.com", referrer: "http://example.com/mypages/" และนี่คือการกำหนดค่าเซิร์ฟเวอร์สมดุลภาระ upstream …
15 nginx  gateway  502 

3
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; …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.