相關命令:
nginx -s reload :修改配置後重新載入生效
nginx -s reopen :重新開啟日誌檔案
nginx -t -c /path/to/nginx.conf 測試nginx配置檔案是否正確
關閉nginx:
nginx -s stop :快速停止nginx
quit :完整有序的停止nginx
其他的停止nginx 方式:
ps -ef | grep nginx
kill -QUIT 主程式號 :從容停止Nginx
kill -TERM 主程式號 :快速停止Nginx
pkill -9 nginx :強制停止Nginx
nginx -t -c /path/to/nginx.conf 測試nginx配置檔案是否正確
關閉nginx:
nginx -s stop :快速停止nginx
quit :完整有序的停止nginx
其他的停止nginx 方式:
ps -ef | grep nginx
kill -QUIT 主程式號 :從容停止Nginx
kill -TERM 主程式號 :快速停止Nginx
pkill -9 nginx :強制停止Nginx
service nginx start 開啟
service nginx stop 停止
service nginx restart 重啟
啟動nginx:
nginx -c /path/to/nginx.conf
平滑重啟nginx:
kill -HUP 主程式號
如果配置多個域名,除了子default.conf配置多行之外,可以在 /etc/nginx/conf.d/ 目錄下配置多個域名結尾的配置檔案,如www.baidu.com的域名就配置為www.baidu.com.conf。