We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b0945a commit 858bbe3Copy full SHA for 858bbe3
install/upgrade/versions/1.4.0.sh
@@ -105,3 +105,13 @@ if [ -f /etc/apt/sources.list.d/postgresql.list ]; then
105
echo "[ * ] Updating PostgreSQL repository..."
106
sed -i 's|deb https://apt.postgresql.org/pub/repos/apt/|deb [arch=amd64] https://apt.postgresql.org/pub/repos/apt/|g' /etc/apt/sources.list.d/postgresql.list
107
fi
108
+
109
+# New configuration value for enforcing subdomain ownership
110
+echo "ENFORCE_SUBDOMAIN_OWNERSHIP='no'" >> $HESTIA/conf/hestia.conf
111
112
+# New API feature to set allowed IPs
113
+if [ "$api" = "yes" ]; then
114
+ echo "API_ALLOWED_IP='allow-all'" >> $HESTIA/conf/hestia.conf
115
+else
116
+ $HESTIA/bin/v-change-sys-api disable
117
+fi
0 commit comments