From a64534958573e6c1938f6f979d811fe1cccd56d4 Mon Sep 17 00:00:00 2001 From: mrowlandfsq Date: Wed, 13 Apr 2022 14:01:56 -0700 Subject: [PATCH] update tags/list location regex to allow any image name instead of xx/yy --- files/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/nginx.conf b/files/nginx.conf index b714aac..c35de80 100644 --- a/files/nginx.conf +++ b/files/nginx.conf @@ -108,7 +108,7 @@ http { proxy_cache_lock on; } - location ~ ^/v2/.*/.*/tags/list+$ { + location ~ ^/v2/.*(/.*)*/tags/list+$ { # get paginated list of tags content_by_lua_block { local location, tags, cjson = ngx.var.uri, {}, require "cjson"