usingSSL changed to useSSL throughout for consistency

This commit is contained in:
Asif Bacchus 2019-01-07 23:00:41 -07:00
parent a22529026a
commit 7c45a84d69
1 changed files with 4 additions and 4 deletions

View File

@ -175,14 +175,14 @@ done
### SSL related options ### SSL related options
# enable SSL? # enable SSL?
while true; do while true; do
read -p "Do you want to enable SSL on this server? (default: Yes)" yn read -p "Do you want to enable SSL on this server? (default: Yes) " yn
case "${yn}" in case "${yn}" in
[Yy]*|'') [Yy]*|'')
usingSSL=1 useSSL=1
break break
;; ;;
[Nn]*) [Nn]*)
usingSSL=0 useSSL=0
break break
;; ;;
[Xx]*) [Xx]*)
@ -196,7 +196,7 @@ while true; do
done done
# using certbot? # using certbot?
if [ "${usingSSL}" -eq 1 ]; then if [ "${useSSL}" -eq 1 ]; then
echo -e "\n${mag}If you are using Certbot, you only need to provide the primary domain name" echo -e "\n${mag}If you are using Certbot, you only need to provide the primary domain name"
echo "of your certificate and the script will auto-generate the paths NGINX needs to" echo "of your certificate and the script will auto-generate the paths NGINX needs to"
echo "make everything work." echo "make everything work."