502 টি খারাপ গেটওয়ে ত্রুটি সাইট পৃষ্ঠাগুলির মাঝে এবং হোম পৃষ্ঠায় কিছু সময় স্যুইচ করার সময় প্রদর্শিত হয় তবে হোম পৃষ্ঠায় প্রথম অনুরোধের জন্য নয় এটি তখনই হয় যখন অন্য কোনও পৃষ্ঠা এতে পুনঃনির্দেশিত হয়। এবং এটি কিছু জাভাস্ক্রিপ্ট ফাইলের জন্য ঘটে
দুটি আপ স্ট্রিম পিএইচপি 1 পিএইচপি 2 এ কনফিগার করা লোড ব্যালেন্সিং উভয়ই অ্যাপাচি সার্ভার।
আমি ত্রুটি লগ চেক করার সময় আমি পছন্দ করি:
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 example.com {
# ip_hash;
server php01 max_fails=3 fail_timeout=15s;
server php02 max_fails=3 fail_timeout=15s;
}
server {
listen IP:80;
server_name example.com;
access_log /var/log/nginx/example.com.access;
error_log /var/log/nginx/example.com.error error;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://$server_name/$uri;
proxy_cache_bypass $cookie_nocache $arg_nocache $arg_comment;
proxy_cache_bypass $http_pragma $http_authorization;
proxy_no_cache $cookie_nocache $arg_nocache $arg_comment;
proxy_no_cache $http_pragma $http_authorization;
}
}
আমি কয়েক ঘন্টা ধরে অনুসন্ধান করেছি এবং আমার স্ট্রিমগুলি সমাপ্ত এবং তাদের সাথে কোনও সমস্যা খুঁজে পাওয়া যায় নি।