Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

travel data science

nginx 502 Bad Gateway 해결 방법 본문

Python study

nginx 502 Bad Gateway 해결 방법

가방이 2022. 3. 27. 02:51

과부하? 문제

 

nginx.conf의 http{  } 내에 아래의 코드를 넣어주면 해결됨.

http{
  ...
  fastcgi_buffers 8 16k;
  fastcgi_buffer_size 32k;
  fastcgi_connect_timeout 300;
  fastcgi_send_timeout 300;
  fastcgi_read_timeout 300;
  ...
}