Last active 1731016914

Revision a94157c514efc6e61d1aa26eff3a3662530bc58f

InstallHestiaCP.md Raw
if grep -qsiRE 'ubuntu|debian' /etc/*release; then
cd /tmp
rm -Rf hst-*
curl -q -LSsf -O https://raw.githubusercontent.com/hestiacp/hestiacp/release/install/hst-install.sh && \
chmod 777 ./hst-install.sh && \
bash -c ./hst-install.sh \
--apache yes \
--phpfpm yes \
--multiphp yes \
--vsftpd no \
--proftpd yes \
--named yes \
--mysql yes \
--mysql-classic no \
--postgresql yes \
--exim yes \
--dovecot yes \
--sieve yes \
--clamav yes \
--spamassassin yes \
--iptables yes \
--fail2ban yes \
--quota yes \
--api yes \
--interactive no \
--with-debs no \
--port '8083' \
--hostname '$HOSTNAME' \
--email 'administrator@casjay.email' \
--password 'password' \
--lang 'en' \
--force || exit 2
else
echo "Unsupported platform: only debian/ubuntu dists are supported"
exit 1
fi