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 a7e5629 commit 1ca5414Copy full SHA for 1ca5414
install/upgrade/versions/1.0.3.sh
@@ -13,4 +13,13 @@ if [ -z $THEME ]; then
13
fi
14
15
# Replace dhparam 1024 with dhparam 4096
16
-cp -f $HESTIA/install/deb/ssl/dhparam.pem /etc/ssl
+echo "(*) Updating dhparam to 4096-bit..."
17
+mv /etc/ssl/dhparam.pem $HESTIA_BACKUP/conf/
18
+cp -rf $HESTIA/install/deb/ssl/dhparam.pem /etc/ssl/
19
+systemctl reload nginx
20
+
21
+# Enhance Dovecot security
22
+echo "(*) Enhancing Dovecot security..."
23
+mv /etc/dovecot/conf.d/10-ssl.conf $HESTIA_BACKUP/conf/
24
+cp -rf $HESTIA/install/deb/dovecot/10-ssl.conf /etc/dovecot/conf.d/
25
+systemctl restart dovecot
0 commit comments