开发者

Nginx - Search for static content in multiple directories?

开发者 https://www.devze.com 2023-02-22 11:27 出处:网络
Because of the way that our git repos are setup I have some static content that might be in one directory - and other content that might be in another directory. How can I ask nginx to search in two p

Because of the way that our git repos are setup I have some static content that might be in one directory - and other content that might be in another directory. How can I ask nginx to search in two places for a static file like a stylesheet?

I originally thought that try_files had my an开发者_Go百科swer - but I can't seem to get it to work.

try_files $uri /dir1/static/$uri /dir2/static/$uri @missing;


location ~* ^/just_test/(.+)$ {
    root /some/path/to/web/root;
    try_files /just_test/1/$1 /just_test/2/$1 /just_test/3/$1 @missing;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消