From 54a5da1c8b5e0fb68dd367b8de1a8e796424744b Mon Sep 17 00:00:00 2001 From: continuist Date: Sat, 28 Jun 2025 23:36:21 -0400 Subject: [PATCH] Temporarily remove all authentication --- registry/nginx.conf | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/registry/nginx.conf b/registry/nginx.conf index 0b8e4cf..2c95286 100644 --- a/registry/nginx.conf +++ b/registry/nginx.conf @@ -20,13 +20,8 @@ http { ssl_protocols TLSv1.2 TLSv1.3; ssl_ciphers HIGH:!aNULL:!MD5; - # Public read access for all GET requests to registry API + # Public access for all registry API requests (temporary for testing) location /v2/ { - limit_except GET { - auth_basic "Registry Realm"; - auth_basic_user_file /etc/nginx/auth/auth.htpasswd; - } - proxy_pass https://registry_api; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr;