我的nginx默认配置文件越来越大。我想将其拆分为较小的配置文件,每个文件最多仅包含一个,每个文件最多包含4个位置,以便我可以快速启用/禁用它们。
实际文件如下所示:
server {
listen 80 default_server;
root /var/www/
location /1 {
config info...;
}
location /2 {
config info....;
}
location /abc {
proxy_pass...;
}
location /xyz {
fastcgi_pass....;
}
location /5678ab {
config info...;
}
location /admin {
config info....;
}
现在,如果我想将其拆分为每个文件中只有几个位置(位置在一起),那么在不引起混乱的情况下进行处理的正确方法是什么(例如在每个文件中声明root,因此具有奇怪的路径是nginx尝试查找文件)?