Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

nginx unlimited timeout

http {
     fastcgi_read_timeout 300;
     proxy_read_timeout 300;
}
Comment

PREVIOUS NEXT
Code Example
Shell :: jupyter link environment 
Shell :: linux loop over all arguments one by one 
Shell :: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144] 
Shell :: update powershell using cmd windows 10 
Shell :: install gnome tweak tool terminal 
Shell :: Exception: Error running pod install 
Shell :: yarn download ubuntu 
Shell :: git config ssl verify false 
Shell :: jupyterlab setup 
Shell :: completely uninstall apache from ubuntu 
Shell :: composer update composer 
Shell :: Unable to resolve dependency tree error when installing npm packages 
Shell :: git search history for file 
Shell :: git remove all tags from remote 
Shell :: add to docker group 
Shell :: linux start mongodb 
Shell :: linux apache stop 
Shell :: ubuntu cleanup systemd journal 
Shell :: check cronta status ubuntu 
Shell :: hello world bash 
Shell :: ubuntu get folder size 
Shell :: linux screen brightness command line 
Shell :: format pendrive linux 
Shell :: docker remove all images 
Shell :: uninstall packages raspberry pi terminal 
Shell :: git log from selected branch 
Shell :: yii2 advanced install 
Shell :: open firewall port ubuntu 16.04 
Shell :: process runninng on particular port 
Shell :: git global gitignore 
ADD CONTENT
Topic
Content
Source link
Name
3+8 =