使用带有多个目录树的 nginx try_files

使用带有多个目录树的 nginx try_files

我想让 nginx 通过检查该路径/文件是否存在于几个单独的目录中来处理对特定目录的请求。例如,如果我的目录根目录有以下内容:

images/siteA/foo.jpg
images/siteB/b/bar.jpg
images/siteC/example.jpg

我想http://example.com/images/foo.jpg归还文件foo.jpghttp://example.com/b/bar.jpg归还文件bar.jpg等等。

我已经尝试了以下操作,但是它只是被锁定在重定向循环中(并且我不希望它重定向,但实际上将文件提供给该 URL):

  location /images/ {
    try_files /siteA/images/
              /siteB/images/
              /siteC/images/ =404;

  } 

我也尝试过使用捕获组,例如location ~/images/(.*)/并添加$1到 URL 末尾。我对文档有点困惑,不确定如何使用 nginx 实现这一点。

答案1

您需要使用正则表达式 location捕获 URI 中 后面的部分/images/。然后使用try_files测试使用每个站点前缀的一系列 URI。

例如:

location ~ ^/images/(.*)$ {
    root /path/to/docroot/images;
    try_files /siteA/$1 /siteB/$1 /siteC/$1 =404;
}

您可以从周围的块继承的值root,在这种情况下可以适当地调整参数try_files

答案2

作为接受答案的替代方案,您可以使用命名位置@my_path例如)回退到其他位置,例如:

location / {
    root /etc/nginx/static;
    try_files $uri @index;
}

location @index {
    root /srv/http;
    try_files $uri $uri.html /index.html =404;
}

相关内容