From 27b148145467381091c2ba103b02b31705e99dee Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Sat, 26 Oct 2019 21:55:16 +0800 Subject: [PATCH 1/2] `nginx` version bumps to `1.17.5`: --- cookbooks/nginx/attributes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbooks/nginx/attributes.rb b/cookbooks/nginx/attributes.rb index 78cc8e6..63a6d0c 100644 --- a/cookbooks/nginx/attributes.rb +++ b/cookbooks/nginx/attributes.rb @@ -3,6 +3,6 @@ # ------------------------------------------- node.reverse_merge!({ 'nginx' => { - 'version' => '1.17.2' + 'version' => '1.17.5' } }) From d1e1dd50f4a9fd9740b77a913cc81538856590e8 Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Sat, 26 Oct 2019 23:35:38 +0800 Subject: [PATCH 2/2] Specify `OpenSSL` version (newer than 1.1.1) to enable TSL1.3. --- cookbooks/nginx/build.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbooks/nginx/build.rb b/cookbooks/nginx/build.rb index 1577bee..8ec162c 100644 --- a/cookbooks/nginx/build.rb +++ b/cookbooks/nginx/build.rb @@ -73,7 +73,7 @@ directory MODULEDIR do end # Build starts here: -execute "#{NGINXBUILD} -d working -v #{version} -c configure.sh -zlib -pcre -openssl" do +execute "#{NGINXBUILD} -d working -v #{version} -c configure.sh -zlib -pcre -openssl -opensslversion=1.1.1d" do cwd WORKDIR user USER