usingSSL changed to useSSL throughout for consistency
This commit is contained in:
parent
a22529026a
commit
7c45a84d69
8
setup.sh
8
setup.sh
@ -175,14 +175,14 @@ done
|
||||
### SSL related options
|
||||
# enable SSL?
|
||||
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
|
||||
[Yy]*|'')
|
||||
usingSSL=1
|
||||
useSSL=1
|
||||
break
|
||||
;;
|
||||
[Nn]*)
|
||||
usingSSL=0
|
||||
useSSL=0
|
||||
break
|
||||
;;
|
||||
[Xx]*)
|
||||
@ -196,7 +196,7 @@ while true; do
|
||||
done
|
||||
|
||||
# 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 "of your certificate and the script will auto-generate the paths NGINX needs to"
|
||||
echo "make everything work."
|
||||
|
Loading…
Reference in New Issue
Block a user