Skip to content

Commit e7d3b79

Browse files
author
Kristan Kenney
committed
Merge branch 'fix/extra-space-config-var-installer' into main
2 parents 9b3a0c7 + 9f0231c commit e7d3b79

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

install/hst-install-debian.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1637,7 +1637,7 @@ echo "[ * ] Install Roundcube..."
16371637

16381638
if [ "$mysql" == 'yes' ] && [ "$dovecot" == "yes" ]; then
16391639
$HESTIA/bin/v-add-sys-roundcube
1640-
echo " WEBMAIL_ALIAS='webmail'" >> $HESTIA/conf/hestia.conf
1640+
echo "WEBMAIL_ALIAS='webmail'" >> $HESTIA/conf/hestia.conf
16411641
fi
16421642

16431643
#----------------------------------------------------------#
@@ -1646,7 +1646,7 @@ fi
16461646

16471647
if [ "$api" = "yes" ]; then
16481648
echo "API='yes'" >> $HESTIA/conf/hestia.conf
1649-
echo "API_ALLOWED_IP='127.0.0.1'" >> $HESTIA/conf/hestia.conf
1649+
echo "API_ALLOWED_IP=''" >> $HESTIA/conf/hestia.conf
16501650
else
16511651
$HESTIA/bin/v-change-sys-api disable
16521652
fi

install/hst-install-ubuntu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1661,7 +1661,7 @@ echo "[ * ] Install Roundcube..."
16611661

16621662
if [ "$mysql" == 'yes' ] && [ "$dovecot" == "yes" ]; then
16631663
$HESTIA/bin/v-add-sys-roundcube
1664-
echo " WEBMAIL_ALIAS='webmail'" >> $HESTIA/conf/hestia.conf
1664+
echo "WEBMAIL_ALIAS='webmail'" >> $HESTIA/conf/hestia.conf
16651665
fi
16661666

16671667

@@ -1671,7 +1671,7 @@ fi
16711671

16721672
if [ "$api" = "yes" ]; then
16731673
echo "API='yes'" >> $HESTIA/conf/hestia.conf
1674-
echo "API_ALLOWED_IP='127.0.0.1'" >> $HESTIA/conf/hestia.conf
1674+
echo "API_ALLOWED_IP=''" >> $HESTIA/conf/hestia.conf
16751675
else
16761676
$HESTIA/bin/v-change-sys-api disable
16771677
fi

0 commit comments

Comments
 (0)