From 41d778e14fc4242c60812547f62edb316cc54514 Mon Sep 17 00:00:00 2001 From: Nick Leffler Date: Sat, 16 May 2020 10:58:49 -0400 Subject: [PATCH] removed ssl stapling --- deploy.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deploy.sh b/deploy.sh index 763c1dd..8c92adb 100755 --- a/deploy.sh +++ b/deploy.sh @@ -19,7 +19,7 @@ read -p "Enter Site Name: " siteName read -p "Enter Site Title: " siteTitle read -p "SSL [Y/n]: " siteProtoIn read -p "Certbot ready? [Y/n]: " cbReady -read -p "Enter Site URL [without http/s]" siteURL +read -p "Enter Site URL [without http/s]: " siteURL read -p "Enter WPAdmin email: " adminEmail if [[ $siteProtoIn == "n" ]]; then @@ -178,10 +178,10 @@ server { ssl_session_cache shared:SSL:10m; add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload"; add_header X-Content-Type-Options nosniff; - ssl_stapling on; - ssl_stapling_verify on; - resolver 8.8.8.8 4.2.2.1 valid=300s; - resolver_timeout 5s; + #ssl_stapling on; + #ssl_stapling_verify on; + #resolver 8.8.8.8 4.2.2.1 valid=300s; + #resolver_timeout 5s; } EOF }