我无法理解 nginx 中的嵌套位置。我有两个位置有一些共同的配置指令,所以与其重复这些指令,我更愿意使用正则表达式重复 URI:
location ~ /a|/b {
location /a {
}
location /b {
}
}
但是,这给出了错误
nginx: [emerg] location "/a" is outside location "/a|/b" in /etc/nginx/nginx.conf:36
不过,没有 or|
似乎还可以。
location ~ /a {
location /a {
}
}
我究竟做错了什么?有没有更好的方法来做到这一点而不重复任何事情?我可以用另一种方式对位置进行分组吗?