설치 / 사용기
서버 / IT 504 gateway time-out 오류 해결 방법 ( NGINX )
2024.05.23 20:07
안녕 하세요 gooddew 입니다.
NGINX 로 운영중인 웹 서버에서 504 gateway time-out 오류 해결 방법입니다
설정 파일 열고
nano /etc/nginx/sites-enabled/default
----------------------------------------------------------
server {
...
location / {
proxy_read_timeout 300;
proxy_connect_timeout 300;
proxy_send_timeout 300;
}
...
}
----------------------------------------------------------
SERVER 에 location / 안에 위 3줄을 추가하면 됩니다.
수정 했으면 저장하고 NGINX 다시 가동 해주세요
systemctl restart nginx
좋은정보 감사합니다.