启动
linux:
service nginx start
windows:
start .\nginx.exe
重启
nginx -s reload
或
systemctl reload nginx.service
终止进程
linux:
ps -ef|grep nginx
pkill -9 nginx
windows:
.\nginx.exe stop
语法检查
配置文件语法不通过会导致 nginx 不能正常启动。所以修改了配置文件后必须先检查 nginx.conf 文件的语法是否正确。
nginx -t -c nginx.conf