From 4c6b418fb005f32051085d6001a1c676cb4a758b Mon Sep 17 00:00:00 2001 From: Carlitos Melgar Date: Mon, 27 Apr 2020 19:11:48 -0400 Subject: [PATCH] SSL Report to check how the installation/configuration of Nginx and Letsencrypt is being evaluated. Using these settings it should provide a grade of "A". --- odoo_install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/odoo_install.sh b/odoo_install.sh index 79842b2..6bd0596 100755 --- a/odoo_install.sh +++ b/odoo_install.sh @@ -463,4 +463,7 @@ if [ $PROXY_MODE != "PROXY_NONE" ]; then else echo -e "\n---- Nginx was not installed because PROXY_MODE is PROXY_NONE ----\n" fi +if [ $PROXY_MODE = "PROXY_LETSENCRYPT" ]; then + echo -e "\n---- Check your SSL Report at: https://www.ssllabs.com/ssltest/analyze.html?d=$WEBSITE_NAME ----\n" +fi echo "-----------------------------------------------------------"