我看一个 nginx 配置
nginx.conf 配置文件中的内容
include loadbalancing.conf;
server {
listen 9522;
server_name localhost;
loadbalancing.conf 文件中的内容
server
{
listen 9523;
server_name biz.abc.com;
proxy_ignore_client_abort on;
error_page 500 502 503 504 /50x.html;
两个文件都有 listen 一个 9522,一个是 9523 这是啥意思? 哪个覆盖哪个?还是说两者都起作用?