502 사이트 페이지와 홈 페이지 간 전환시 잘못된 게이트웨이 오류가 표시되지만 홈 페이지의 첫 번째 요청이 아닌 경우 다른 페이지가 해당 페이지로 리디렉션 될 때만 발생합니다. 일부 자바 스크립트 파일에서 발생합니다.
두 개의 업스트림에 구성된로드 밸런싱 php1 php2는 모두 아파치 서버입니다.
오류 로그를 확인하면 다음을 좋아합니다.
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;
}
}
몇 시간 동안 검색했는데 스트림이 작동하고 문제가 없음을 발견했습니다.