Nginx
查看 niginx 进程: ps -ef|grep nginx进程: master worker 查看 nginx 的:版本、安装目录 (--prefix)、编译参数 nginx -V重新加载配置文件: shellnginx -s reload查看配置文件 nginx.config 所在目录,验证默认配置文件,常用于检查配置文件有没有写对: nginx -t常见目录有: /etc/nginx/conf/usr/local/etc/nginx/opt/homebrew/etc/nginx停止 nginx 服务: nginx -s quit //优雅停止nginx -s...
more...