nginx配置

nginx - s信号

  • stop——快速关闭(我理解为强杀)
  • quit——优雅的关闭(nginx为一个主进程N个工作进程,优雅的关闭是指关闭没有工作中的工作进程,等待其他工作进程工作完毕后再将其关闭,最后关闭主进程。原因是防止客户端正在下载文件中,服务器关闭对客户端造成不必要的麻烦等类似问还是支付)
  • reload——重新加载配置文件
  • reopen——重启日志文件

配置文件

1
2
3
4
5
6
7
8
location / {
root /usr/share/nginx/html/driving/dist/;
index index.html index.htm;
}
location /h5 {
root /usr/share/nginx/html/driving/h5/;
index index.html index.htm;
}

要改为alias,不然会报404

1
2
3
4
location /h5 {
alias /usr/share/nginx/html/driving/h5/;
index index.html index.htm;
}

nginx配置
http://showfaker.top/2024/03/07/nginx/
作者
ShowFaker
发布于
2024年3月7日
许可协议