在一台nginx服务器上服务多个版本的单页应用?

问题描述 投票:1回答:1

我需要在一台服务器上为多个单页应用程序(SPA)提供多个版本的服务,如果一个URL指定的版本在服务器上不存在,我想提供一个后备版本。

如果一个URL指定的版本在服务器上不存在,我想提供一个后备版本。

有些版本实际上是指向其他版本的符号链接。

# /var/www/apps/example-app
0.1.0
0.1.1
0.1.2
fooversion -> /var/www/apps/example-spa/0.1.2
latest -> /var/www/apps/example-spa/0.1.1

版本 latest 是我想用来作为备用的。

所有的SPA都有一个 index.html 文件。

我特别不希望服务于不同版本的混合文件。如果一个版本存在于服务器上,那么对该版本的所有请求都应该从该文件夹中提供。

# excerpt from nginx config
...

location ~ ^/apps/(?<appname>.+?)/(?<appversion>.+?)/(?<suffix>.*)
{
    # 'latest' is the name of the folder with the fallback version
    set $effectiveversion latest;

    # NOTE: file check does not take into account `root` directive, use full path
    if (-f /var/www/apps/$appname/$appversion/index.html) {
        set $effectiveversion $appversion;
    }

    # try path, then force to SPA index
    try_files /apps/$appname/$effectiveversion/$suffix /apps/$appname/$effectiveversion/index.html;
}

# catch requests that end without a trailing slash
location ~ ^/apps/(?<appname>.+?)/(?<appversion>[^\/]+)$
{
    try_files /NONEXISTENTFILE /apps/$appname/$appversion/;
}

...

我知道 if 可能是个问题,因为它在nginx配置中享有盛名。

(注意:我所说的后缀指的是版本后面的任何东西,所以在版本后面的 /file.extension/some/folder/that/does/notexist/ 是后缀。如果文件存在,则应提供服务,所有子文件夹应提供版本的 index.html.

该代码目前适用于以下URL。

https://example.com/apps/bar-app/nonexistentversion/nonexistentsuffix
https://example.com/apps/bar-app/nonexistentversion/nonexistentsuffix/
https://example.com/apps/bar-app/nonexistentversion
https://example.com/apps/bar-app/nonexistentversion/
https://example.com/apps/bar-app/nonexistentversion/existentsuffix
https://example.com/apps/bar-app/existentversion/existentsuffix
https://example.com/apps/bar-app/existentversion/
https://example.com/apps/bar-app/existentversion

但对这些没有作用。

https://example.com/apps/bar-app/existentversion/nonexistentsuffix
https://example.com/apps/bar-app/existentversion/nonexistentsuffix/

目前最后两个返回404s。

==> /var/log/nginx/error.log <==
2020/06/03 14:23:15 [error] 7100#7100: *1289803 open() "/var/www/apps/example-app/fooversion/somefrontendroute" failed (2: No such file or directory), client: ..., server: , request: "GET /apps/example-app/fooversion/somefrontendroute HTTP/1.1", host: "static.bar.com", referrer: ...

==> /var/log/nginx/access.log <==
[03/Jun/2020:14:23:15 +1000] ... - "GET /apps/example-app/fooversion/somefrontendroute HTTP/1.1" 404 209 - 0.000 - - - 1591158195.572 -"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36" "..., ..."

有什么办法可以覆盖最后这几种情况吗?或者甚至有更干净的方法来处理这整个问题?

工作解决方案。

(99%是Richard Smith的答案,我只是增加了一个重写)

# cover case where version has no trailing `/`
rewrite ^/apps/([^/]+?)/([^/]+)$ /apps/$1/$2/;

location ~ ^/apps/(?<app>.+?)/(?<version>.+?)/(?<rest>.*)$
{
  try_files
    /apps/$app/$version/$rest
    /apps/$app/$version/index.html
    /apps/$app/latest/$rest
    /apps/$app/latest/index.html
  ;
}

如果一个URI不存在,它将提供索引而不是404。这对我来说是可以接受的

nginx single-page-application nginx-config
1个回答
1
投票

你也许可以删除 if 块状 try_files 指令实际上与 if (-f.

最后一个参数是 try_files 声明不是 档案 术语。通过添加 =404 语句结尾,你的最后一个参数就变成了一个常规的 档案 术语,这可能是你问题案例的根本原因。

请看 本文件 以了解详情。

例如:

location ~ ^/apps/(?<appname>.+?)/(?<appversion>.+?)/(?<suffix>.*)$
{
    try_files 
        $uri
        /apps/$appname/$appversion/index.html
        /apps/$appname/latest/$suffix 
        /apps/$appname/latest/index.html
        =404
    ;
}
© www.soinside.com 2019 - 2024. All rights reserved.