Answers for "windows restart nginx"

3

restart nginx

sudo systemctl reload nginx
Posted by: Guest on September-22-2020
0

Start / Restart / Stop Nginx Commands

sudo systemctl start nginx 
sudo systemctl stop nginx 
sudo systemctl restart nginx


sudo service nginx start
sudo service nginx stop
sudo service nginx restart

sudo /etc/init.d/nginx start
sudo /etc/init.d/nginx stop
sudo /etc/init.d/nginx restart
Posted by: Guest on May-28-2021
0

nginx reload on windows

nginx -s stop	#fast shutdown
nginx -s quit	#graceful shutdown
nginx -s reload	#changing configuration, starting new worker processes with a new configuration, graceful shutdown of old worker processes
nginx -s reopen	#re-opening log files
Posted by: Guest on June-03-2020
1

restart nginx windows

@ECHO OFF
cd /nginx
taskkill /f /IM nginx.exe
start nginx
EXIT
Posted by: Guest on April-13-2021

Browse Popular Code Answers by Language