是否可以配置nginx位置以根据创建日期提供根文件夹?

时间:2014-06-20 15:25:04

标签: nginx

我有一组静态文件,这些文件会自动部署到当前配置的nginx根位置。

每个构建都有效地生成一组版本化的资源(静态html / css / javascript),如下所示:

location ~ ^/(mylocation) {
        root    /local/0/www/;
        autoindex on;
        auth_request off;
        expires 5d;
        add_header Access-Control-Allow-Origin *;

        proxy_cache            static_one;
        proxy_cache_valid      200      60m;
        proxy_cache_valid      404      1m;
        proxy_cache_use_stale  error timeout invalid_header updating http_500 http_502 http_503 http_504;
    }

在“mylocation”目录中有许多版本化目录1.0,1.0.1,1.0.2等。

将nginx作为默认设置提供最新版本(最高版本号)是否可行,同时仍然可以直接为各个版本提供服务?

0 个答案:

没有答案