I – 502 Bad Gateway Error
II – How To Solve Nginx 502 Error: Just Increase Buffer & Timeouts On Nginx / FastCGI
.
I – 502 Bad Gateway Error
.
II – How To Solve Nginx 502 Error: Just Increase Buffer & Timeouts On Nginx / FastCGI
Login Your Website With Winscp and Go to etc/nginx. After back up of your nginx.conf file, add this lines;
http {
...
fastcgi_buffers 8 16k;
fastcgi_buffer_size 32k;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
...
}
or Fallow These Steps;
After This, Backup Process Goes On Without Problems..
Hope This Helps..