Horje
increase nginx timeout Code Example
increase nginx timeout
step 1:  $sudo nano /etc/nginx/nginx.conf
step 2:  add following config to http section and save it.
http {
   ...
   proxy_read_timeout 300;
   proxy_connect_timeout 300;
   proxy_send_timeout 300; 
   ...
}
step 3:  $sudo service nginx reload
nginx unlimited timeout
http {
     fastcgi_read_timeout 300;
     proxy_read_timeout 300;
}




Shell

Related
copy my ssh key Code Example copy my ssh key Code Example
install gem ubuntu Code Example install gem ubuntu Code Example
how to install flask_sqlalchemy Code Example how to install flask_sqlalchemy Code Example
apache2 does not start xampp mac Code Example apache2 does not start xampp mac Code Example
how to know my ros version Code Example how to know my ros version Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
14