From 616a17e0ab23ed76296b295382f4f47faaf10d0c Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Mon, 7 Jul 2025 12:34:54 +0100 Subject: [PATCH] nginx: fix apt_repository key to use url --- cookbooks/apt/recipes/nginx.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cookbooks/apt/recipes/nginx.rb b/cookbooks/apt/recipes/nginx.rb index b80b8bb8b..117ef31a7 100644 --- a/cookbooks/apt/recipes/nginx.rb +++ b/cookbooks/apt/recipes/nginx.rb @@ -26,8 +26,7 @@ platform_name = if platform?("debian") end apt_repository "nginx" do - arch "amd64" uri "https://nginx.org/packages/#{platform_name}" components ["nginx"] - key "ABF5BD827BD9BF62" + key "https://nginx.org/keys/nginx_signing.key" end -- 2.39.5