| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965 |
- #!/bin/bash
- # Hestia Ubuntu installer v1.0
- #----------------------------------------------------------#
- # Variables&Functions #
- #----------------------------------------------------------#
- export PATH=$PATH:/sbin
- export DEBIAN_FRONTEND=noninteractive
- RHOST='apt.hestiacp.com'
- GPG='gpg.hestiacp.com'
- VERSION='ubuntu'
- HESTIA='/usr/local/hestia'
- LOG="/root/hst_install_backups/hst_install-$(date +%d%m%Y%H%M).log"
- memory=$(grep 'MemTotal' /proc/meminfo |tr ' ' '\n' |grep [0-9])
- hst_backups="/root/hst_install_backups/$(date +%d%m%Y%H%M)"
- arch=$(uname -i)
- spinner="/-\|"
- os='ubuntu'
- release="$(lsb_release -s -r)"
- codename="$(lsb_release -s -c)"
- HESTIA_INSTALL_DIR="$HESTIA/install/deb"
- VERBOSE='no'
- # Define software versions
- HESTIA_INSTALL_VER='1.3.5'
- pma_v='5.1.0'
- multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0")
- fpm_v="7.4"
- mariadb_v="10.5"
- # Defining software pack for all distros
- software="apache2 apache2.2-common apache2-suexec-custom apache2-utils
- apparmor-utils awstats bc bind9 bsdmainutils bsdutils clamav-daemon
- cron curl dnsutils dovecot-imapd dovecot-pop3d e2fslibs e2fsprogs exim4
- exim4-daemon-heavy expect fail2ban flex ftp git idn imagemagick
- libapache2-mod-fcgid libapache2-mod-php$fpm_v libapache2-mod-rpaf
- lsof mc mariadb-client mariadb-common mariadb-server nginx
- php$fpm_v php$fpm_v-cgi php$fpm_v-common php$fpm_v-curl phpmyadmin
- php$fpm_v-mysql php$fpm_v-imap php$fpm_v-ldap php$fpm_v-apcu phppgadmin
- php$fpm_v-pgsql php$fpm_v-zip php$fpm_v-bz2 php$fpm_v-cli php$fpm_v-gd
- php$fpm_v-imagick php$fpm_v-intl php$fpm_v-json php$fpm_v-mbstring
- php$fpm_v-opcache php$fpm_v-pspell php$fpm_v-readline php$fpm_v-xml
- postgresql postgresql-contrib proftpd-basic quota roundcube-core
- roundcube-mysql roundcube-plugins rrdtool rssh spamassassin sudo hestia=${HESTIA_INSTALL_VER}
- hestia-nginx hestia-php vim-common vsftpd whois zip acl sysstat setpriv
- ipset libonig5 libzip5 openssh-server zstd"
- installer_dependencies="apt-transport-https curl dirmngr gnupg wget software-properties-common ca-certificates"
- # Defining help function
- help() {
- echo "Usage: $0 [OPTIONS]
- -a, --apache Install Apache [yes|no] default: yes
- -n, --nginx Install Nginx [yes|no] default: yes
- -w, --phpfpm Install PHP-FPM [yes|no] default: yes
- -o, --multiphp Install Multi-PHP [yes|no] default: no
- -v, --vsftpd Install Vsftpd [yes|no] default: yes
- -j, --proftpd Install ProFTPD [yes|no] default: no
- -k, --named Install Bind [yes|no] default: yes
- -m, --mysql Install MariaDB [yes|no] default: yes
- -g, --postgresql Install PostgreSQL [yes|no] default: no
- -x, --exim Install Exim [yes|no] default: yes
- -z, --dovecot Install Dovecot [yes|no] default: yes
- -c, --clamav Install ClamAV [yes|no] default: yes
- -t, --spamassassin Install SpamAssassin [yes|no] default: yes
- -i, --iptables Install Iptables [yes|no] default: yes
- -b, --fail2ban Install Fail2ban [yes|no] default: yes
- -q, --quota Filesystem Quota [yes|no] default: no
- -d, --api Activate API [yes|no] default: yes
- -r, --port Change Backend Port default: 8083
- -l, --lang Default language default: en
- -y, --interactive Interactive install [yes|no] default: yes
- -s, --hostname Set hostname
- -e, --email Set admin email
- -p, --password Set admin password
- -D, --with-debs Path to Hestia debs
- -f, --force Force installation
- -h, --help Print this help
- Example: bash $0 -e demo@hestiacp.com -p p4ssw0rd --multiphp yes"
- exit 1
- }
- # Defining file download function
- download_file() {
- wget $1 -q --show-progress --progress=bar:force
- }
- # Defining password-gen function
- gen_pass() {
- head /dev/urandom | tr -dc A-Za-z0-9 | head -c 16
- }
- # Defining return code check function
- check_result() {
- if [ $1 -ne 0 ]; then
- echo "Error: $2"
- exit $1
- fi
- }
- # Defining function to set default value
- set_default_value() {
- eval variable=\$$1
- if [ -z "$variable" ]; then
- eval $1=$2
- fi
- if [ "$variable" != 'yes' ] && [ "$variable" != 'no' ]; then
- eval $1=$2
- fi
- }
- # Defining function to set default language value
- set_default_lang() {
- if [ -z "$lang" ]; then
- eval lang=$1
- fi
- lang_list="ar az bg bs cs da de el en es fa fi fr hr hu id it ja ka ko nl no pl pt pt-br ro
- ru sr sv th tr uk ur vi zh-cn zh-tw"
- if !(echo $lang_list |grep -w $lang > /dev/null 2>&1); then
- eval lang=$1
- fi
- }
- # Define the default backend port
- set_default_port() {
- if [ -z "$port" ]; then
- eval port=$1
- fi
- }
- #----------------------------------------------------------#
- # Verifications #
- #----------------------------------------------------------#
- # Creating temporary file
- tmpfile=$(mktemp -p /tmp)
- # Translating argument to --gnu-long-options
- for arg; do
- delim=""
- case "$arg" in
- --apache) args="${args}-a " ;;
- --nginx) args="${args}-n " ;;
- --phpfpm) args="${args}-w " ;;
- --vsftpd) args="${args}-v " ;;
- --proftpd) args="${args}-j " ;;
- --named) args="${args}-k " ;;
- --mysql) args="${args}-m " ;;
- --postgresql) args="${args}-g " ;;
- --exim) args="${args}-x " ;;
- --dovecot) args="${args}-z " ;;
- --clamav) args="${args}-c " ;;
- --spamassassin) args="${args}-t " ;;
- --iptables) args="${args}-i " ;;
- --fail2ban) args="${args}-b " ;;
- --multiphp) args="${args}-o " ;;
- --quota) args="${args}-q " ;;
- --port) args="${args}-r " ;;
- --lang) args="${args}-l " ;;
- --interactive) args="${args}-y " ;;
- --api) args="${args}-d " ;;
- --hostname) args="${args}-s " ;;
- --email) args="${args}-e " ;;
- --password) args="${args}-p " ;;
- --force) args="${args}-f " ;;
- --with-debs) args="${args}-D " ;;
- --help) args="${args}-h " ;;
- *) [[ "${arg:0:1}" == "-" ]] || delim="\""
- args="${args}${delim}${arg}${delim} ";;
- esac
- done
- eval set -- "$args"
- # Parsing arguments
- while getopts "a:n:w:v:j:k:m:g:d:x:z:c:t:i:b:r:o:q:l:y:s:e:p:D:fh" Option; do
- case $Option in
- a) apache=$OPTARG ;; # Apache
- n) nginx=$OPTARG ;; # Nginx
- w) phpfpm=$OPTARG ;; # PHP-FPM
- o) multiphp=$OPTARG ;; # Multi-PHP
- v) vsftpd=$OPTARG ;; # Vsftpd
- j) proftpd=$OPTARG ;; # Proftpd
- k) named=$OPTARG ;; # Named
- m) mysql=$OPTARG ;; # MariaDB
- g) postgresql=$OPTARG ;; # PostgreSQL
- x) exim=$OPTARG ;; # Exim
- z) dovecot=$OPTARG ;; # Dovecot
- c) clamd=$OPTARG ;; # ClamAV
- t) spamd=$OPTARG ;; # SpamAssassin
- i) iptables=$OPTARG ;; # Iptables
- b) fail2ban=$OPTARG ;; # Fail2ban
- q) quota=$OPTARG ;; # FS Quota
- r) port=$OPTARG ;; # Backend Port
- l) lang=$OPTARG ;; # Language
- d) api=$OPTARG ;; # Activate API
- y) interactive=$OPTARG ;; # Interactive install
- s) servername=$OPTARG ;; # Hostname
- e) email=$OPTARG ;; # Admin email
- p) vpass=$OPTARG ;; # Admin password
- D) withdebs=$OPTARG ;; # Hestia debs path
- f) force='yes' ;; # Force install
- h) help ;; # Help
- *) help ;; # Print help (default)
- esac
- done
- # Defining default software stack
- set_default_value 'nginx' 'yes'
- set_default_value 'apache' 'yes'
- set_default_value 'phpfpm' 'yes'
- set_default_value 'multiphp' 'no'
- set_default_value 'vsftpd' 'yes'
- set_default_value 'proftpd' 'no'
- set_default_value 'named' 'yes'
- set_default_value 'mysql' 'yes'
- set_default_value 'postgresql' 'no'
- set_default_value 'exim' 'yes'
- set_default_value 'dovecot' 'yes'
- if [ $memory -lt 1500000 ]; then
- set_default_value 'clamd' 'no'
- set_default_value 'spamd' 'no'
- else
- set_default_value 'clamd' 'yes'
- set_default_value 'spamd' 'yes'
- fi
- set_default_value 'iptables' 'yes'
- set_default_value 'fail2ban' 'yes'
- set_default_value 'quota' 'no'
- set_default_value 'interactive' 'yes'
- set_default_value 'api' 'yes'
- set_default_port '8083'
- set_default_lang 'en'
- # Checking software conflicts
- if [ "$proftpd" = 'yes' ]; then
- vsftpd='no'
- fi
- if [ "$exim" = 'no' ]; then
- clamd='no'
- spamd='no'
- dovecot='no'
- fi
- if [ "$iptables" = 'no' ]; then
- fail2ban='no'
- fi
- # Checking root permissions
- if [ "x$(id -u)" != 'x0' ]; then
- check_result 1 "Script can be run executed only by root"
- fi
- # Checking admin user account
- if [ ! -z "$(grep ^admin: /etc/passwd /etc/group)" ] && [ -z "$force" ]; then
- echo 'Please remove admin user account before proceeding.'
- echo 'If you want to do it automatically run installer with -f option:'
- echo -e "Example: bash $0 --force\n"
- check_result 1 "User admin exists"
- fi
- # Check if a default webserver was set
- if [ $apache = 'no' ] && [ $nginx = 'no' ]; then
- check_result 1 "No web server was selected"
- fi
- # Clear the screen once launch permissions have been verified
- clear
- # Configure apt to retry downloading on error
- if [ ! -f /etc/apt/apt.conf.d/80-retries ]; then
- echo "APT::Acquire::Retries \"3\";" > /etc/apt/apt.conf.d/80-retries
- fi
- # Welcome message
- echo "Welcome to the Hestia Control Panel installer!"
- echo
- echo "Please wait, the installer is now checking for missing dependencies..."
- echo
- # Update apt repository
- apt-get -qq update
- # Creating backup directory
- mkdir -p $hst_backups
- # Pre-install packages
- echo "[ * ] Installing dependencies..."
- apt-get -y install $installer_dependencies >> $LOG
- check_result $? "Package installation failed, check log file for more details."
- # Check repository availability
- wget --quiet "https://$GPG/deb_signing.key" -O /dev/null
- check_result $? "Unable to connect to the Hestia APT repository"
- # Check installed packages
- tmpfile=$(mktemp -p /tmp)
- dpkg --get-selections > $tmpfile
- for pkg in exim4 mariadb-server apache2 nginx hestia postfix ufw; do
- if [ ! -z "$(grep $pkg $tmpfile)" ]; then
- conflicts="$pkg* $conflicts"
- fi
- done
- rm -f $tmpfile
- if [ ! -z "$conflicts" ] && [ -z "$force" ]; then
- echo '!!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!!'
- echo
- echo 'WARNING: The following packages are already installed'
- echo "$conflicts"
- echo
- echo 'It is highly recommended that you remove them before proceeding.'
- echo
- echo '!!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!!'
- echo
- read -p 'Would you like to remove the conflicting packages? [y/n] ' answer
- if [ "$answer" = 'y' ] || [ "$answer" = 'Y' ]; then
- apt-get -qq purge $conflicts -y
- check_result $? 'apt-get remove failed'
- unset $answer
- else
- check_result 1 "Hestia Control Panel should be installed on a clean server."
- fi
- fi
- # Check network configuration
- if [ -d /etc/netplan ] && [ -z "$force" ]; then
- if [ -z "$(ls -A /etc/netplan)" ]; then
- echo '!!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!!'
- echo
- echo 'WARNING: Your network configuration may not be set up correctly.'
- echo 'Details: The netplan configuration directory is empty.'
- echo ''
- echo 'You may have a network configuration file that was created using'
- echo 'systemd-networkd.'
- echo ''
- echo 'It is strongly recommended to migrate to netplan, which is now the'
- echo 'default network configuration system in newer releases of Ubuntu.'
- echo ''
- echo 'While you can leave your configuration as-is, please note that you'
- echo 'will not be able to use additional IPs properly.'
- echo ''
- echo 'If you wish to continue and force the installation,'
- echo 'run this script with -f option:'
- echo "Example: bash $0 --force"
- echo
- echo '!!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!! !!!'
- echo
- check_result 1 "Unable to detect netplan configuration."
- fi
- fi
- # Validate whether installation script matches release version before continuing with install
- if [ -z "$withdebs" ] || [ ! -d "$withdebs" ]; then
- release_branch_ver=$(curl -s https://raw.githubusercontent.com/hestiacp/hestiacp/release/src/deb/hestia/control |grep "Version:" |awk '{print $2}')
- if [ "$HESTIA_INSTALL_VER" != "$release_branch_ver" ]; then
- echo
- echo -e "\e[91mInstallation aborted\e[0m"
- echo "===================================================================="
- echo -e "\e[33mERROR: Install script version does not match package version!\e[0m"
- echo -e "\e[33mPlease download the installer from the release branch in order to continue:\e[0m"
- echo ""
- echo -e "\e[33mhttps://raw.githubusercontent.com/hestiacp/hestiacp/release/install/hst-install.sh\e[0m"
- echo ""
- echo -e "\e[33mTo test pre-release versions, build the .deb packages and re-run the installer:\e[0m"
- echo -e " \e[33m./hst_autocompile.sh \e[1m--hestia branchname no\e[21m\e[0m"
- echo -e " \e[33m./hst-install.sh .. \e[1m--with-debs /tmp/hestiacp-src/debs\e[21m\e[0m"
- echo ""
- check_result 1 "Installation aborted"
- fi
- fi
- #----------------------------------------------------------#
- # Brief Info #
- #----------------------------------------------------------#
- install_welcome_message() {
- DISPLAY_VER=$(echo $HESTIA_INSTALL_VER | sed "s|~alpha||g" | sed "s|~beta||g")
- echo
- echo ' _ _ _ _ ____ ____ '
- echo ' | | | | ___ ___| |_(_) __ _ / ___| _ \ '
- echo ' | |_| |/ _ \/ __| __| |/ _` | | | |_) | '
- echo ' | _ | __/\__ \ |_| | (_| | |___| __/ '
- echo ' |_| |_|\___||___/\__|_|\__,_|\____|_| '
- echo " "
- echo " Hestia Control Panel "
- if [[ "$HESTIA_INSTALL_VER" =~ "beta" ]]; then
- echo " BETA RELEASE "
- fi
- if [[ "$HESTIA_INSTALL_VER" =~ "alpha" ]]; then
- echo " DEVELOPMENT SNAPSHOT "
- echo " NOT INTENDED FOR PRODUCTION USE "
- echo " USE AT YOUR OWN RISK "
- fi
- echo " ${DISPLAY_VER} "
- echo " www.hestiacp.com "
- echo
- echo "========================================================================"
- echo
- echo "Thank you for downloading Hestia Control Panel! In a few moments,"
- echo "we will begin installing the following components on your server:"
- echo
- }
- # Printing nice ASCII logo
- clear
- install_welcome_message
- # Web stack
- if [ "$nginx" = 'yes' ]; then
- echo ' - NGINX Web / Proxy Server'
- fi
- if [ "$apache" = 'yes' ] && [ "$nginx" = 'no' ] ; then
- echo ' - Apache Web Server'
- fi
- if [ "$apache" = 'yes' ] && [ "$nginx" = 'yes' ] ; then
- echo ' - Apache Web Server (as backend)'
- fi
- if [ "$phpfpm" = 'yes' ] && [ "$multiphp" = 'no' ]; then
- echo ' - PHP-FPM Application Server'
- fi
- if [ "$multiphp" = 'yes' ]; then
- phpfpm='yes'
- echo ' - Multi-PHP Environment'
- fi
- # DNS stack
- if [ "$named" = 'yes' ]; then
- echo ' - Bind DNS Server'
- fi
- # Mail stack
- if [ "$exim" = 'yes' ]; then
- echo -n ' - Exim Mail Server'
- if [ "$clamd" = 'yes' ] || [ "$spamd" = 'yes' ] ; then
- echo -n ' + '
- if [ "$clamd" = 'yes' ]; then
- echo -n 'ClamAV '
- fi
- if [ "$spamd" = 'yes' ]; then
- if [ "$clamd" = 'yes' ]; then
- echo -n '+ '
- fi
- echo -n 'SpamAssassin'
- fi
- fi
- echo
- if [ "$dovecot" = 'yes' ]; then
- echo ' - Dovecot POP3/IMAP Server'
- fi
- fi
- # Database stack
- if [ "$mysql" = 'yes' ]; then
- echo ' - MariaDB Database Server'
- fi
- if [ "$postgresql" = 'yes' ]; then
- echo ' - PostgreSQL Database Server'
- fi
- # FTP stack
- if [ "$vsftpd" = 'yes' ]; then
- echo ' - Vsftpd FTP Server'
- fi
- if [ "$proftpd" = 'yes' ]; then
- echo ' - ProFTPD FTP Server'
- fi
- # Firewall stack
- if [ "$iptables" = 'yes' ]; then
- echo -n ' - Firewall (Iptables)'
- fi
- if [ "$iptables" = 'yes' ] && [ "$fail2ban" = 'yes' ]; then
- echo -n ' + Fail2Ban Access Monitor'
- fi
- echo -e "\n"
- echo "========================================================================"
- echo -e "\n"
- # Asking for confirmation to proceed
- if [ "$interactive" = 'yes' ]; then
- read -p 'Would you like to continue with the installation? [Y/N]: ' answer
- if [ "$answer" != 'y' ] && [ "$answer" != 'Y' ]; then
- echo 'Goodbye'
- exit 1
- fi
- # Asking for contact email
- if [ -z "$email" ]; then
- read -p 'Please enter admin email address: ' email
- fi
- # Asking to set FQDN hostname
- if [ -z "$servername" ]; then
- read -p "Please enter FQDN hostname [$(hostname -f)]: " servername
- fi
- fi
- # Generating admin password if it wasn't set
- if [ -z "$vpass" ]; then
- vpass=$(gen_pass)
- fi
- # Set hostname if it wasn't set
- if [ -z "$servername" ]; then
- servername=$(hostname -f)
- fi
- # Set FQDN if it wasn't set
- mask1='(([[:alnum:]](-?[[:alnum:]])*)\.)'
- mask2='*[[:alnum:]](-?[[:alnum:]])+\.[[:alnum:]]{2,}'
- if ! [[ "$servername" =~ ^${mask1}${mask2}$ ]]; then
- if [ ! -z "$servername" ]; then
- servername="$servername.example.com"
- else
- servername="example.com"
- fi
- echo "127.0.0.1 $servername" >> /etc/hosts
- fi
- # Set email if it wasn't set
- if [ -z "$email" ]; then
- email="admin@$servername"
- fi
- # Defining backup directory
- echo -e "Installation backup directory: $hst_backups"
- # Print Log File Path
- echo "Installation log file: $LOG"
- # Print new line
- echo
- #----------------------------------------------------------#
- # Checking swap #
- #----------------------------------------------------------#
- # Checking swap on small instances
- if [ -z "$(swapon -s)" ] && [ $memory -lt 1000000 ]; then
- fallocate -l 1G /swapfile
- chmod 600 /swapfile
- mkswap /swapfile
- swapon /swapfile
- echo "/swapfile none swap sw 0 0" >> /etc/fstab
- fi
- #----------------------------------------------------------#
- # Install repository #
- #----------------------------------------------------------#
- # Define apt conf location
- apt=/etc/apt/sources.list.d
- # Updating system
- echo "Adding required repositories to proceed with installation:"
- echo
- # Installing Nginx repo
- if [ "$nginx" = 'yes' ]; then
- echo "[ * ] NGINX"
- echo "deb [arch=amd64] https://nginx.org/packages/mainline/$VERSION/ $codename nginx" > $apt/nginx.list
- if [ "$release" = '16.04' ]; then
- apt-key adv --fetch-keys 'http://nginx.org/keys/nginx_signing.key' > /dev/null 2>&1
- else
- apt-key adv --fetch-keys 'https://nginx.org/keys/nginx_signing.key' > /dev/null 2>&1
- fi
- fi
- # Installing sury PHP repo
- echo "[ * ] PHP"
- LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php > /dev/null 2>&1
- # Installing sury Apache2 repo
- if [ "$apache" = 'yes' ]; then
- echo "[ * ] Apache2"
- echo "deb http://ppa.launchpad.net/ondrej/apache2/ubuntu $codename main" > $apt/apache2.list
- fi
- # Installing MariaDB repo
- if [ "$mysql" = 'yes' ]; then
- echo "[ * ] MariaDB"
- echo "deb [arch=amd64] https://mirror.mva-n.net/mariadb/repo/$mariadb_v/$VERSION $codename main" > $apt/mariadb.list
- if [ "$release" = '16.04' ]; then
- apt-key adv --fetch-keys 'http://mariadb.org/mariadb_release_signing_key.asc' > /dev/null 2>&1
- else
- apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc' > /dev/null 2>&1
- fi
- fi
- # Installing HestiaCP repo
- echo "[ * ] Hestia Control Panel"
- echo "deb https://$RHOST/ $codename main" > $apt/hestia.list
- apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A189E93654F0B0E5 > /dev/null 2>&1
- # Installing PostgreSQL repo
- if [ "$postgresql" = 'yes' ]; then
- echo "[ * ] PostgreSQL"
- echo "deb https://apt.postgresql.org/pub/repos/apt/ $codename-pgdg main" > $apt/postgresql.list
- if [ "$release" = '16.04' ]; then
- apt-key adv --fetch-keys 'http://www.postgresql.org/media/keys/ACCC4CF8.asc' > /dev/null 2>&1
- else
- apt-key adv --fetch-keys 'https://www.postgresql.org/media/keys/ACCC4CF8.asc' > /dev/null 2>&1
- fi
- fi
- # Echo for a new line
- echo
- # Updating system
- echo -ne "Updating currently installed packages, please wait... "
- apt-get -qq update
- apt-get -y upgrade >> $LOG &
- BACK_PID=$!
- # Check if package installation is done, print a spinner
- spin_i=1
- while kill -0 $BACK_PID > /dev/null 2>&1 ; do
- printf "\b${spinner:spin_i++%${#spinner}:1}"
- sleep 0.5
- done
- # Do a blank echo to get the \n back
- echo
- # Check Installation result
- wait $BACK_PID
- check_result $? 'apt-get upgrade failed'
- #----------------------------------------------------------#
- # Backup #
- #----------------------------------------------------------#
- # Creating backup directory tree
- mkdir -p $hst_backups
- cd $hst_backups
- mkdir nginx apache2 php vsftpd proftpd bind exim4 dovecot clamd
- mkdir spamassassin mysql postgresql hestia
- # Backup nginx configuration
- systemctl stop nginx > /dev/null 2>&1
- cp -r /etc/nginx/* $hst_backups/nginx > /dev/null 2>&1
- # Backup Apache configuration
- systemctl stop apache2 > /dev/null 2>&1
- cp -r /etc/apache2/* $hst_backups/apache2 > /dev/null 2>&1
- rm -f /etc/apache2/conf.d/* > /dev/null 2>&1
- # Backup PHP-FPM configuration
- systemctl stop php*-fpm > /dev/null 2>&1
- cp -r /etc/php/* $hst_backups/php/ > /dev/null 2>&1
- # Backup Bind configuration
- systemctl stop bind9 > /dev/null 2>&1
- cp -r /etc/bind/* $hst_backups/bind > /dev/null 2>&1
- # Backup Vsftpd configuration
- systemctl stop vsftpd > /dev/null 2>&1
- cp /etc/vsftpd.conf $hst_backups/vsftpd > /dev/null 2>&1
- # Backup ProFTPD configuration
- systemctl stop proftpd > /dev/null 2>&1
- cp /etc/proftpd/* $hst_backups/proftpd > /dev/null 2>&1
- # Backup Exim configuration
- systemctl stop exim4 > /dev/null 2>&1
- cp -r /etc/exim4/* $hst_backups/exim4 > /dev/null 2>&1
- # Backup ClamAV configuration
- systemctl stop clamav-daemon > /dev/null 2>&1
- cp -r /etc/clamav/* $hst_backups/clamav > /dev/null 2>&1
- # Backup SpamAssassin configuration
- systemctl stop spamassassin > /dev/null 2>&1
- cp -r /etc/spamassassin/* $hst_backups/spamassassin > /dev/null 2>&1
- # Backup Dovecot configuration
- systemctl stop dovecot > /dev/null 2>&1
- cp /etc/dovecot.conf $hst_backups/dovecot > /dev/null 2>&1
- cp -r /etc/dovecot/* $hst_backups/dovecot > /dev/null 2>&1
- # Backup MySQL/MariaDB configuration and data
- systemctl stop mysql > /dev/null 2>&1
- killall -9 mysqld > /dev/null 2>&1
- mv /var/lib/mysql $hst_backups/mysql/mysql_datadir > /dev/null 2>&1
- cp -r /etc/mysql/* $hst_backups/mysql > /dev/null 2>&1
- mv -f /root/.my.cnf $hst_backups/mysql > /dev/null 2>&1
- # Backup Hestia
- systemctl stop hestia > /dev/null 2>&1
- cp -r $HESTIA/* $hst_backups/hestia > /dev/null 2>&1
- apt-get -y purge hestia hestia-nginx hestia-php > /dev/null 2>&1
- rm -rf $HESTIA > /dev/null 2>&1
- #----------------------------------------------------------#
- # Package Includes #
- #----------------------------------------------------------#
- if [ "$phpfpm" = 'yes' ]; then
- fpm="php$fpm_v php$fpm_v-common php$fpm_v-bcmath php$fpm_v-cli
- php$fpm_v-curl php$fpm_v-fpm php$fpm_v-gd php$fpm_v-intl
- php$fpm_v-mysql php$fpm_v-soap php$fpm_v-xml php$fpm_v-zip
- php$fpm_v-mbstring php$fpm_v-json php$fpm_v-bz2 php$fpm_v-pspell
- php$fpm_v-imagick"
- software="$software $fpm"
- fi
- #----------------------------------------------------------#
- # Package Excludes #
- #----------------------------------------------------------#
- # Excluding packages
- software=$(echo "$software" | sed -e "s/apache2.2-common//")
- if [ "$nginx" = 'no' ]; then
- software=$(echo "$software" | sed -r -e 's/(\s|^)nginx(\s|$)/ /')
- fi
- if [ "$apache" = 'no' ]; then
- software=$(echo "$software" | sed -e "s/apache2 //")
- software=$(echo "$software" | sed -e "s/apache2-bin//")
- software=$(echo "$software" | sed -e "s/apache2-utils//")
- software=$(echo "$software" | sed -e "s/apache2-suexec-custom//")
- software=$(echo "$software" | sed -e "s/apache2.2-common//")
- software=$(echo "$software" | sed -e "s/libapache2-mod-rpaf//")
- software=$(echo "$software" | sed -e "s/libapache2-mod-fcgid//")
- software=$(echo "$software" | sed -e "s/libapache2-mod-php$fpm_v//")
- fi
- if [ "$vsftpd" = 'no' ]; then
- software=$(echo "$software" | sed -e "s/vsftpd//")
- fi
- if [ "$proftpd" = 'no' ]; then
- software=$(echo "$software" | sed -e "s/proftpd-basic//")
- software=$(echo "$software" | sed -e "s/proftpd-mod-vroot//")
- fi
- if [ "$named" = 'no' ]; then
- software=$(echo "$software" | sed -e "s/bind9//")
- fi
- if [ "$exim" = 'no' ]; then
- software=$(echo "$software" | sed -e "s/exim4 //")
- software=$(echo "$software" | sed -e "s/exim4-daemon-heavy//")
- software=$(echo "$software" | sed -e "s/dovecot-imapd//")
- software=$(echo "$software" | sed -e "s/dovecot-pop3d//")
- software=$(echo "$software" | sed -e "s/clamav-daemon//")
- software=$(echo "$software" | sed -e "s/spamassassin//")
- software=$(echo "$software" | sed -e "s/roundcube-core//")
- software=$(echo "$software" | sed -e "s/roundcube-mysql//")
- software=$(echo "$software" | sed -e "s/roundcube-plugins//")
- fi
- if [ "$clamd" = 'no' ]; then
- software=$(echo "$software" | sed -e "s/clamav-daemon//")
- fi
- if [ "$spamd" = 'no' ]; then
- software=$(echo "$software" | sed -e "s/spamassassin//")
- fi
- if [ "$dovecot" = 'no' ]; then
- software=$(echo "$software" | sed -e "s/dovecot-imapd//")
- software=$(echo "$software" | sed -e "s/dovecot-pop3d//")
- software=$(echo "$software" | sed -e "s/roundcube-core//")
- software=$(echo "$software" | sed -e "s/roundcube-mysql//")
- software=$(echo "$software" | sed -e "s/roundcube-plugins//")
- fi
- if [ "$mysql" = 'no' ]; then
- software=$(echo "$software" | sed -e "s/mariadb-server//")
- software=$(echo "$software" | sed -e "s/mariadb-client//")
- software=$(echo "$software" | sed -e "s/mariadb-common//")
- software=$(echo "$software" | sed -e "s/php$fpm_v-mysql//")
- if [ "$multiphp" = 'yes' ]; then
- for v in "${multiphp_v[@]}"; do
- software=$(echo "$software" | sed -e "s/php$v-mysql//")
- software=$(echo "$software" | sed -e "s/php$v-bz2//")
- done
- fi
- software=$(echo "$software" | sed -e "s/phpmyadmin//")
- fi
- if [ "$postgresql" = 'no' ]; then
- software=$(echo "$software" | sed -e "s/postgresql-contrib//")
- software=$(echo "$software" | sed -e "s/postgresql//")
- software=$(echo "$software" | sed -e "s/php$fpm_v-pgsql//")
- if [ "$multiphp" = 'yes' ]; then
- for v in "${multiphp_v[@]}"; do
- software=$(echo "$software" | sed -e "s/php$v-pgsql//")
- done
- fi
- software=$(echo "$software" | sed -e "s/phppgadmin//")
- fi
- if [ "$fail2ban" = 'no' ]; then
- software=$(echo "$software" | sed -e "s/fail2ban//")
- fi
- if [ "$iptables" = 'no' ]; then
- software=$(echo "$software" | sed -e "s/ipset//")
- software=$(echo "$software" | sed -e "s/fail2ban//")
- fi
- if [ "$phpfpm" = 'yes' ]; then
- software=$(echo "$software" | sed -e "s/php$fpm_v-cgi//")
- software=$(echo "$software" | sed -e "s/libapache2-mod-ruid2//")
- software=$(echo "$software" | sed -e "s/libapache2-mod-php$fpm_v//")
- fi
- if [ -d "$withdebs" ]; then
- software=$(echo "$software" | sed -e "s/hestia-nginx//")
- software=$(echo "$software" | sed -e "s/hestia-php//")
- software=$(echo "$software" | sed -e "s/hestia=${HESTIA_INSTALL_VER}//")
- fi
- if [ "$release" = '16.04' ]; then
- software=$(echo "$software" | sed -e "s/libonig5/libonig2/")
- software=$(echo "$software" | sed -e "s/libzip5/libzip4/")
- fi
- if [ "$release" = '18.04' ]; then
- software=$(echo "$software" | sed -e "s/libonig5/libonig4/")
- software=$(echo "$software" | sed -e "s/libzip5/libzip4/")
- fi
- if [ "$release" = '20.04' ]; then
- software=$(echo "$software" | sed -e "s/setpriv/util-linux/")
- software=$(echo "$software" | sed -e "s/rssh//")
- fi
- #----------------------------------------------------------#
- # Disable Apparmor on LXC #
- #----------------------------------------------------------#
- if grep --quiet lxc /proc/1/environ; then
- if [ -f /etc/init.d/apparmor ]; then
- systemctl stop apparmor > /dev/null 2>&1
- systemctl disable apparmor > /dev/null 2>&1
- fi
- fi
- #----------------------------------------------------------#
- # Install packages #
- #----------------------------------------------------------#
- # Disabling daemon autostart on apt-get install
- echo -e '#!/bin/sh\nexit 101' > /usr/sbin/policy-rc.d
- chmod a+x /usr/sbin/policy-rc.d
- # Installing apt packages
- echo "The installer is now downloading and installing all required packages."
- echo -ne "NOTE: This process may take 10 to 15 minutes to complete, please wait... "
- echo
- apt-get -y install $software > /dev/null 2>&1 &
- BACK_PID=$!
- # Check if package installation is done, print a spinner
- spin_i=1
- while kill -0 $BACK_PID > /dev/null 2>&1 ; do
- printf "\b${spinner:spin_i++%${#spinner}:1}"
- sleep 0.5
- done
- # Do a blank echo to get the \n back
- echo
- # Check Installation result
- wait $BACK_PID
- check_result $? "apt-get install failed"
- echo
- echo "========================================================================"
- echo
- # Install Hestia packages from local folder
- if [ ! -z "$withdebs" ] && [ -d "$withdebs" ]; then
- echo "[ * ] Installing local package files..."
- echo " - hestia core package"
- dpkg -i $withdebs/hestia_*.deb > /dev/null 2>&1
- if [ -z $(ls $withdebs/hestia-php_*.deb 2>/dev/null) ]; then
- echo " - hestia-php backend package (from apt)"
- apt-get -y install hestia-php > /dev/null 2>&1
- else
- echo " - hestia-php backend package"
- dpkg -i $withdebs/hestia-php_*.deb > /dev/null 2>&1
- fi
- if [ -z $(ls $withdebs/hestia-nginx_*.deb 2>/dev/null) ]; then
- echo " - hestia-nginx backend package (from apt)"
- apt-get -y install hestia-nginx > /dev/null 2>&1
- else
- echo " - hestia-nginx backend package"
- dpkg -i $withdebs/hestia-nginx_*.deb > /dev/null 2>&1
- fi
- fi
- # Restoring autostart policy
- rm -f /usr/sbin/policy-rc.d
- #----------------------------------------------------------#
- # Configure system #
- #----------------------------------------------------------#
- echo "[ * ] Configuring system settings..."
- # Enable SFTP subsystem for SSH
- sftp_subsys_enabled=$(grep -iE "^#?.*subsystem.+(sftp )?sftp-server" /etc/ssh/sshd_config)
- if [ ! -z "$sftp_subsys_enabled" ]; then
- sed -i -E "s/^#?.*Subsystem.+(sftp )?sftp-server/Subsystem sftp internal-sftp/g" /etc/ssh/sshd_config
- fi
- # Reduce SSH login grace time
- sed -i "s/LoginGraceTime 2m/LoginGraceTime 1m/g" /etc/ssh/sshd_config
- sed -i "s/#LoginGraceTime 2m/LoginGraceTime 1m/g" /etc/ssh/sshd_config
- # Disable SSH suffix broadcast
- if [ -z "$(grep "^DebianBanner no" /etc/ssh/sshd_config)" ]; then
- echo '' >> /etc/ssh/sshd_config
- echo 'DebianBanner no' >> /etc/ssh/sshd_config
- fi
- # Restart SSH daemon
- systemctl restart ssh
- # Disable AWStats cron
- rm -f /etc/cron.d/awstats
- # Set directory color
- if [ -z "$(grep 'LS_COLORS="$LS_COLORS:di=00;33"' /etc/profile)" ]; then
- echo 'LS_COLORS="$LS_COLORS:di=00;33"' >> /etc/profile
- fi
- # Registering /usr/sbin/nologin
- if [ -z "$(grep nologin /etc/shells)" ]; then
- echo "/usr/sbin/nologin" >> /etc/shells
- fi
- # Configuring NTP
- sed -i 's/#NTP=/NTP=pool.ntp.org/' /etc/systemd/timesyncd.conf
- systemctl enable systemd-timesyncd
- systemctl start systemd-timesyncd
- # Setup rssh
- if [ "$release" != '20.04' ]; then
- if [ -z "$(grep /usr/bin/rssh /etc/shells)" ]; then
- echo /usr/bin/rssh >> /etc/shells
- fi
- sed -i 's/#allowscp/allowscp/' /etc/rssh.conf
- sed -i 's/#allowsftp/allowsftp/' /etc/rssh.conf
- sed -i 's/#allowrsync/allowrsync/' /etc/rssh.conf
- chmod 755 /usr/bin/rssh
- fi
- # Check iptables paths and add symlinks when necessary
- if [ ! -e "/sbin/iptables" ]; then
- if which iptables; then
- ln -s "$(which iptables)" /sbin/iptables
- elif [ -e "/usr/sbin/iptables" ]; then
- ln -s /usr/sbin/iptables /sbin/iptables
- elif whereis -B /bin /sbin /usr/bin /usr/sbin -f -b iptables; then
- autoiptables=$(whereis -B /bin /sbin /usr/bin /usr/sbin -f -b iptables | cut -d '' -f 2)
- if [ -x "$autoiptables" ]; then
- ln -s "$autoiptables" /sbin/iptables
- fi
- fi
- fi
- if [ ! -e "/sbin/iptables-save" ]; then
- if which iptables-save; then
- ln -s "$(which iptables-save)" /sbin/iptables-save
- elif [ -e "/usr/sbin/iptables-save" ]; then
- ln -s /usr/sbin/iptables-save /sbin/iptables-save
- elif whereis -B /bin /sbin /usr/bin /usr/sbin -f -b iptables-save; then
- autoiptables_save=$(whereis -B /bin /sbin /usr/bin /usr/sbin -f -b iptables-save | cut -d '' -f 2)
- if [ -x "$autoiptables_save" ]; then
- ln -s "$autoiptables_save" /sbin/iptables-save
- fi
- fi
- fi
- if [ ! -e "/sbin/iptables-restore" ]; then
- if which iptables-restore; then
- ln -s "$(which iptables-restore)" /sbin/iptables-restore
- elif [ -e "/usr/sbin/iptables-restore" ]; then
- ln -s /usr/sbin/iptables-restore /sbin/iptables-restore
- elif whereis -B /bin /sbin /usr/bin /usr/sbin -f -b iptables-restore; then
- autoiptables_restore=$(whereis -B /bin /sbin /usr/bin /usr/sbin -f -b iptables-restore | cut -d '' -f 2)
- if [ -x "$autoiptables_restore" ]; then
- ln -s "$autoiptables_restore" /sbin/iptables-restore
- fi
- fi
- fi
- # Restrict access to /proc fs
- # - Prevent unpriv users from seeing each other running processes
- mount -o remount,defaults,hidepid=2 /proc > /dev/null 2>&1
- if [ $? -ne 0 ]; then
- echo "Info: Cannot remount /proc (LXC containers require additional perm added to host apparmor profile)"
- else
- echo "@reboot root sleep 5 && mount -o remount,defaults,hidepid=2 /proc" > /etc/cron.d/hestia-proc
- fi
- #----------------------------------------------------------#
- # Configure Hestia #
- #----------------------------------------------------------#
- echo "[ * ] Configuring Hestia Control Panel..."
- # Installing sudo configuration
- mkdir -p /etc/sudoers.d
- cp -f $HESTIA_INSTALL_DIR/sudo/admin /etc/sudoers.d/
- chmod 440 /etc/sudoers.d/admin
- # Configuring system env
- echo "export HESTIA='$HESTIA'" > /etc/profile.d/hestia.sh
- echo 'PATH=$PATH:'$HESTIA'/bin' >> /etc/profile.d/hestia.sh
- echo 'export PATH' >> /etc/profile.d/hestia.sh
- chmod 755 /etc/profile.d/hestia.sh
- source /etc/profile.d/hestia.sh
- # Configuring logrotate for Hestia logs
- cp -f $HESTIA_INSTALL_DIR/logrotate/hestia /etc/logrotate.d/hestia
- # Building directory tree and creating some blank files for Hestia
- mkdir -p $HESTIA/conf $HESTIA/log $HESTIA/ssl $HESTIA/data/ips \
- $HESTIA/data/queue $HESTIA/data/users $HESTIA/data/firewall \
- $HESTIA/data/sessions
- touch $HESTIA/data/queue/backup.pipe $HESTIA/data/queue/disk.pipe \
- $HESTIA/data/queue/webstats.pipe $HESTIA/data/queue/restart.pipe \
- $HESTIA/data/queue/traffic.pipe $HESTIA/data/queue/daily.pipe $HESTIA/log/system.log \
- $HESTIA/log/nginx-error.log $HESTIA/log/auth.log
- chmod 750 $HESTIA/conf $HESTIA/data/users $HESTIA/data/ips $HESTIA/log
- chmod -R 750 $HESTIA/data/queue
- chmod 660 $HESTIA/log/*
- rm -f /var/log/hestia
- ln -s $HESTIA/log /var/log/hestia
- chmod 770 $HESTIA/data/sessions
- # Generating Hestia configuration
- rm -f $HESTIA/conf/hestia.conf > /dev/null 2>&1
- touch $HESTIA/conf/hestia.conf
- chmod 660 $HESTIA/conf/hestia.conf
- # Web stack
- if [ "$apache" = 'yes' ] && [ "$nginx" = 'no' ] ; then
- echo "WEB_SYSTEM='apache2'" >> $HESTIA/conf/hestia.conf
- echo "WEB_RGROUPS='www-data'" >> $HESTIA/conf/hestia.conf
- echo "WEB_PORT='80'" >> $HESTIA/conf/hestia.conf
- echo "WEB_SSL_PORT='443'" >> $HESTIA/conf/hestia.conf
- echo "WEB_SSL='mod_ssl'" >> $HESTIA/conf/hestia.conf
- echo "STATS_SYSTEM='awstats'" >> $HESTIA/conf/hestia.conf
- fi
- if [ "$apache" = 'yes' ] && [ "$nginx" = 'yes' ] ; then
- echo "WEB_SYSTEM='apache2'" >> $HESTIA/conf/hestia.conf
- echo "WEB_RGROUPS='www-data'" >> $HESTIA/conf/hestia.conf
- echo "WEB_PORT='8080'" >> $HESTIA/conf/hestia.conf
- echo "WEB_SSL_PORT='8443'" >> $HESTIA/conf/hestia.conf
- echo "WEB_SSL='mod_ssl'" >> $HESTIA/conf/hestia.conf
- echo "PROXY_SYSTEM='nginx'" >> $HESTIA/conf/hestia.conf
- echo "PROXY_PORT='80'" >> $HESTIA/conf/hestia.conf
- echo "PROXY_SSL_PORT='443'" >> $HESTIA/conf/hestia.conf
- echo "STATS_SYSTEM='awstats'" >> $HESTIA/conf/hestia.conf
- fi
- if [ "$apache" = 'no' ] && [ "$nginx" = 'yes' ]; then
- echo "WEB_SYSTEM='nginx'" >> $HESTIA/conf/hestia.conf
- echo "WEB_RGROUPS='www-data'" >> $HESTIA/conf/hestia.conf
- echo "WEB_PORT='80'" >> $HESTIA/conf/hestia.conf
- echo "WEB_SSL_PORT='443'" >> $HESTIA/conf/hestia.conf
- echo "WEB_SSL='openssl'" >> $HESTIA/conf/hestia.conf
- echo "STATS_SYSTEM='awstats'" >> $HESTIA/conf/hestia.conf
- fi
- if [ "$phpfpm" = 'yes' ] || [ "$multiphp" = 'yes' ]; then
- echo "WEB_BACKEND='php-fpm'" >> $HESTIA/conf/hestia.conf
- fi
- # Database stack
- if [ "$mysql" = 'yes' ]; then
- installed_db_types='mysql'
- fi
- if [ "$pgsql" = 'yes' ]; then
- installed_db_types="$installed_db_type,pgsql"
- fi
- if [ ! -z "$installed_db_types" ]; then
- db=$(echo "$installed_db_types" |\
- sed "s/,/\n/g"|\
- sort -r -u |\
- sed "/^$/d"|\
- sed ':a;N;$!ba;s/\n/,/g')
- echo "DB_SYSTEM='$db'" >> $HESTIA/conf/hestia.conf
- fi
- # FTP stack
- if [ "$vsftpd" = 'yes' ]; then
- echo "FTP_SYSTEM='vsftpd'" >> $HESTIA/conf/hestia.conf
- fi
- if [ "$proftpd" = 'yes' ]; then
- echo "FTP_SYSTEM='proftpd'" >> $HESTIA/conf/hestia.conf
- fi
- # DNS stack
- if [ "$named" = 'yes' ]; then
- echo "DNS_SYSTEM='bind9'" >> $HESTIA/conf/hestia.conf
- fi
- # Mail stack
- if [ "$exim" = 'yes' ]; then
- echo "MAIL_SYSTEM='exim4'" >> $HESTIA/conf/hestia.conf
- if [ "$clamd" = 'yes' ]; then
- echo "ANTIVIRUS_SYSTEM='clamav-daemon'" >> $HESTIA/conf/hestia.conf
- fi
- if [ "$spamd" = 'yes' ]; then
- echo "ANTISPAM_SYSTEM='spamassassin'" >> $HESTIA/conf/hestia.conf
- fi
- if [ "$dovecot" = 'yes' ]; then
- echo "IMAP_SYSTEM='dovecot'" >> $HESTIA/conf/hestia.conf
- fi
- fi
- # Cron daemon
- echo "CRON_SYSTEM='cron'" >> $HESTIA/conf/hestia.conf
- # Firewall stack
- if [ "$iptables" = 'yes' ]; then
- echo "FIREWALL_SYSTEM='iptables'" >> $HESTIA/conf/hestia.conf
- fi
- if [ "$iptables" = 'yes' ] && [ "$fail2ban" = 'yes' ]; then
- echo "FIREWALL_EXTENSION='fail2ban'" >> $HESTIA/conf/hestia.conf
- fi
- # Disk quota
- if [ "$quota" = 'yes' ]; then
- echo "DISK_QUOTA='yes'" >> $HESTIA/conf/hestia.conf
- fi
- # Backups
- echo "BACKUP_SYSTEM='local'" >> $HESTIA/conf/hestia.conf
- echo "BACKUP_GZIP='9'" >> $HESTIA/conf/hestia.conf
- echo "BACKUP_MODE='zstd'" >> $HESTIA/conf/hestia.conf
- # Language
- echo "LANGUAGE='$lang'" >> $HESTIA/conf/hestia.conf
- # Login in screen
- echo "LOGIN_STYLE='default'" >> $HESTIA/conf/hestia.conf
- # Version & Release Branch
- echo "VERSION='${HESTIA_INSTALL_VER}'" >> $HESTIA/conf/hestia.conf
- echo "RELEASE_BRANCH='release'" >> $HESTIA/conf/hestia.conf
- # Installing hosting packages
- cp -rf $HESTIA_INSTALL_DIR/packages $HESTIA/data/
- # Update nameservers in hosting package
- IFS='.' read -r -a domain_elements <<< "$servername"
- if [ ! -z "${domain_elements[-2]}" ] && [ ! -z "${domain_elements[-1]}" ]; then
- serverdomain="${domain_elements[-2]}.${domain_elements[-1]}"
- sed -i s/"domain.tld"/"$serverdomain"/g $HESTIA/data/packages/*.pkg
- fi
- # Installing templates
- cp -rf $HESTIA_INSTALL_DIR/templates $HESTIA/data/
- mkdir -p /var/www/html
- mkdir -p /var/www/document_errors
- # Install default success page
- cp -rf $HESTIA_INSTALL_DIR/templates/web/unassigned/index.html /var/www/html/
- cp -rf $HESTIA_INSTALL_DIR/templates/web/skel/document_errors/* /var/www/document_errors/
- # Installing firewall rules
- cp -rf $HESTIA_INSTALL_DIR/firewall $HESTIA/data/
- # Configuring server hostname
- $HESTIA/bin/v-change-sys-hostname $servername > /dev/null 2>&1
- # Generating SSL certificate
- echo "[ * ] Generating default self-signed SSL certificate..."
- $HESTIA/bin/v-generate-ssl-cert $(hostname) $email 'US' 'California' \
- 'San Francisco' 'Hestia Control Panel' 'IT' > /tmp/hst.pem
- # Parsing certificate file
- crt_end=$(grep -n "END CERTIFICATE-" /tmp/hst.pem |cut -f 1 -d:)
- key_start=$(grep -n "BEGIN RSA" /tmp/hst.pem |cut -f 1 -d:)
- key_end=$(grep -n "END RSA" /tmp/hst.pem |cut -f 1 -d:)
- # Adding SSL certificate
- echo "[ * ] Adding SSL certificate to Hestia Control Panel..."
- cd $HESTIA/ssl
- sed -n "1,${crt_end}p" /tmp/hst.pem > certificate.crt
- sed -n "$key_start,${key_end}p" /tmp/hst.pem > certificate.key
- chown root:mail $HESTIA/ssl/*
- chmod 660 $HESTIA/ssl/*
- rm /tmp/hst.pem
- # Adding nologin as a valid system shell
- if [ -z "$(grep nologin /etc/shells)" ]; then
- echo "/usr/sbin/nologin" >> /etc/shells
- fi
- # Install dhparam.pem
- cp -f $HESTIA_INSTALL_DIR/ssl/dhparam.pem /etc/ssl
- #----------------------------------------------------------#
- # Configure Nginx #
- #----------------------------------------------------------#
- if [ "$nginx" = 'yes' ]; then
- echo "[ * ] Configuring NGINX..."
- rm -f /etc/nginx/conf.d/*.conf
- cp -f $HESTIA_INSTALL_DIR/nginx/nginx.conf /etc/nginx/
- cp -f $HESTIA_INSTALL_DIR/nginx/status.conf /etc/nginx/conf.d/
- cp -f $HESTIA_INSTALL_DIR/nginx/phpmyadmin.inc /etc/nginx/conf.d/
- cp -f $HESTIA_INSTALL_DIR/nginx/phppgadmin.inc /etc/nginx/conf.d/
- cp -f $HESTIA_INSTALL_DIR/logrotate/nginx /etc/logrotate.d/
- mkdir -p /etc/nginx/conf.d/domains
- mkdir -p /etc/nginx/modules-enabled
- mkdir -p /var/log/nginx/domains
- # Update dns servers in nginx.conf
- dns_resolver=$(cat /etc/resolv.conf | grep -i '^nameserver' | cut -d ' ' -f2 | tr '\r\n' ' ' | xargs)
- for ip in $dns_resolver; do
- if [[ $ip =~ ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
- resolver="$ip $resolver"
- fi
- done
- if [ ! -z "$resolver" ]; then
- sed -i "s/1.0.0.1 1.1.1.1/$resolver/g" /etc/nginx/nginx.conf
- sed -i "s/1.0.0.1 1.1.1.1/$resolver/g" /usr/local/hestia/nginx/conf/nginx.conf
- fi
- update-rc.d nginx defaults > /dev/null 2>&1
- systemctl start nginx >> $LOG
- check_result $? "nginx start failed"
- fi
- #----------------------------------------------------------#
- # Configure Apache #
- #----------------------------------------------------------#
- if [ "$apache" = 'yes' ]; then
- echo "[ * ] Configuring Apache Web Server..."
- mkdir -p /etc/apache2/conf.d
- mkdir -p /etc/apache2/conf.d/domains
- # Copy configuration files
- cp -f $HESTIA_INSTALL_DIR/apache2/apache2.conf /etc/apache2/
- cp -f $HESTIA_INSTALL_DIR/apache2/status.conf /etc/apache2/mods-available/hestia-status.conf
- cp -f /etc/apache2/mods-available/status.load /etc/apache2/mods-available/hestia-status.load
- cp -f $HESTIA_INSTALL_DIR/logrotate/apache2 /etc/logrotate.d/
-
- # Enable needed modules
- a2enmod rewrite > /dev/null 2>&1
- a2enmod suexec > /dev/null 2>&1
- a2enmod ssl > /dev/null 2>&1
- a2enmod actions > /dev/null 2>&1
- a2dismod --quiet status > /dev/null 2>&1
- a2enmod --quiet hestia-status > /dev/null 2>&1
- # Enable mod_ruid/mpm_itk or mpm_event
- if [ "$phpfpm" = 'yes' ]; then
- # Disable prefork and php, enable event
- a2dismod php$fpm_v > /dev/null 2>&1
- a2dismod mpm_prefork > /dev/null 2>&1
- a2enmod mpm_event > /dev/null 2>&1
- cp -f $HESTIA_INSTALL_DIR/apache2/hestia-event.conf /etc/apache2/conf.d/
- else
- a2enmod ruid2 > /dev/null 2>&1
- fi
- echo "# Powered by hestia" > /etc/apache2/sites-available/default
- echo "# Powered by hestia" > /etc/apache2/sites-available/default-ssl
- echo "# Powered by hestia" > /etc/apache2/ports.conf
- echo -e "/home\npublic_html/cgi-bin" > /etc/apache2/suexec/www-data
- touch /var/log/apache2/access.log /var/log/apache2/error.log
- mkdir -p /var/log/apache2/domains
- chmod a+x /var/log/apache2
- chmod 640 /var/log/apache2/access.log /var/log/apache2/error.log
- chmod 751 /var/log/apache2/domains
- # Prevent remote access to server-status page
- sed -i '/Allow from all/d' /etc/apache2/mods-available/hestia-status.conf
- update-rc.d apache2 defaults > /dev/null 2>&1
- systemctl start apache2 >> $LOG
- check_result $? "apache2 start failed"
- else
- update-rc.d apache2 disable > /dev/null 2>&1
- systemctl stop apache2 > /dev/null 2>&1
- fi
- #----------------------------------------------------------#
- # Configure PHP-FPM #
- #----------------------------------------------------------#
- if [ "$multiphp" = 'yes' ] ; then
- for v in "${multiphp_v[@]}"; do
- cp -r /etc/php/$v/ /root/hst_install_backups/php$v/
- rm -f /etc/php/$v/fpm/pool.d/*
- echo "[ * ] Install PHP version $v..."
- $HESTIA/bin/v-add-web-php "$v" > /dev/null 2>&1
- done
- fi
- if [ "$phpfpm" = 'yes' ]; then
- echo "[ * ] Configuring PHP-FPM..."
- $HESTIA/bin/v-add-web-php "$fpm_v" > /dev/null 2>&1
- cp -f $HESTIA_INSTALL_DIR/php-fpm/www.conf /etc/php/$fpm_v/fpm/pool.d/www.conf
- update-rc.d php$fpm_v-fpm defaults > /dev/null 2>&1
- systemctl start php$fpm_v-fpm >> $LOG
- check_result $? "php-fpm start failed"
- update-alternatives --set php /usr/bin/php$fpm_v > /dev/null 2>&1
- fi
- #----------------------------------------------------------#
- # Configure PHP #
- #----------------------------------------------------------#
- echo "[ * ] Configuring PHP..."
- ZONE=$(timedatectl > /dev/null 2>&1|grep Timezone|awk '{print $2}')
- if [ -z "$ZONE" ]; then
- ZONE='UTC'
- fi
- for pconf in $(find /etc/php* -name php.ini); do
- sed -i "s%;date.timezone =%date.timezone = $ZONE%g" $pconf
- sed -i 's%_open_tag = Off%_open_tag = On%g' $pconf
- done
- # Cleanup php session files not changed in the last 7 days (60*24*7 minutes)
- echo '#!/bin/sh' > /etc/cron.daily/php-session-cleanup
- echo "find -O3 /home/*/tmp/ -ignore_readdir_race -depth -mindepth 1 -name 'sess_*' -type f -cmin '+10080' -delete > /dev/null 2>&1" >> /etc/cron.daily/php-session-cleanup
- echo "find -O3 $HESTIA/data/sessions/ -ignore_readdir_race -depth -mindepth 1 -name 'sess_*' -type f -cmin '+10080' -delete > /dev/null 2>&1" >> /etc/cron.daily/php-session-cleanup
- chmod 755 /etc/cron.daily/php-session-cleanup
- #----------------------------------------------------------#
- # Configure Vsftpd #
- #----------------------------------------------------------#
- if [ "$vsftpd" = 'yes' ]; then
- echo "[ * ] Configuring Vsftpd server..."
- cp -f $HESTIA_INSTALL_DIR/vsftpd/vsftpd.conf /etc/
- touch /var/log/vsftpd.log
- chown root:adm /var/log/vsftpd.log
- chmod 640 /var/log/vsftpd.log
- touch /var/log/xferlog
- chown root:adm /var/log/xferlog
- chmod 640 /var/log/xferlog
- update-rc.d vsftpd defaults
- systemctl start vsftpd >> $LOG
- check_result $? "vsftpd start failed"
- fi
- #----------------------------------------------------------#
- # Configure ProFTPD #
- #----------------------------------------------------------#
- if [ "$proftpd" = 'yes' ]; then
- echo "[ * ] Configuring ProFTPD server..."
- echo "127.0.0.1 $servername" >> /etc/hosts
- cp -f $HESTIA_INSTALL_DIR/proftpd/proftpd.conf /etc/proftpd/
- cp -f $HESTIA_INSTALL_DIR/proftpd/tls.conf /etc/proftpd/
- update-rc.d proftpd defaults > /dev/null 2>&1
- systemctl start proftpd >> $LOG
- check_result $? "proftpd start failed"
- fi
- #----------------------------------------------------------#
- # Configure MariaDB #
- #----------------------------------------------------------#
- if [ "$mysql" = 'yes' ]; then
- echo "[ * ] Configuring MariaDB database server..."
- mycnf="my-small.cnf"
- if [ $memory -gt 1200000 ]; then
- mycnf="my-medium.cnf"
- fi
- if [ $memory -gt 3900000 ]; then
- mycnf="my-large.cnf"
- fi
- # Remove symbolic link
- rm -f /etc/mysql/my.cnf
-
- # Configuring MariaDB
- cp -f $HESTIA_INSTALL_DIR/mysql/$mycnf /etc/mysql/my.cnf
- mysql_install_db >> $LOG
- update-rc.d mysql defaults > /dev/null 2>&1
- systemctl start mysql >> $LOG
- check_result $? "mariadb start failed"
- # Securing MariaDB installation
- mpass=$(gen_pass)
- mysqladmin -u root password $mpass >> $LOG
- echo -e "[client]\npassword='$mpass'\n" > /root/.my.cnf
- chmod 600 /root/.my.cnf
- # Clear MariaDB Test Users and Databases
- mysql -e "DELETE FROM mysql.user WHERE User=''"
- mysql -e "DROP DATABASE test" > /dev/null 2>&1
- mysql -e "DELETE FROM mysql.db WHERE Db='test' OR Db='test\\_%'"
- mysql -e "DELETE FROM mysql.user WHERE user='';"
- mysql -e "DELETE FROM mysql.user WHERE password='' AND authentication_string='';"
- # Configuring phpMyAdmin
- if [ "$apache" = 'yes' ]; then
- cp -f $HESTIA_INSTALL_DIR/pma/apache.conf /etc/phpmyadmin/
- ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf
- fi
- cp -f $HESTIA_INSTALL_DIR/pma/config.inc.php /etc/phpmyadmin/
- chmod 777 /var/lib/phpmyadmin/tmp
- fi
- #----------------------------------------------------------#
- # Configure phpMyAdmin #
- #----------------------------------------------------------#
- if [ "$mysql" = 'yes' ]; then
- # Display upgrade information
- echo "[ * ] Installing phpMyAdmin version v$pma_v..."
- # Download latest phpmyadmin release
- wget --quiet https://files.phpmyadmin.net/phpMyAdmin/$pma_v/phpMyAdmin-$pma_v-all-languages.tar.gz
- # Unpack files
- tar xzf phpMyAdmin-$pma_v-all-languages.tar.gz
- # Delete files to prevent error
- rm -fr /usr/share/phpmyadmin/doc/html
- rm -fr /usr/share/phpmyadmin/js/vendor/openlayers
- # Overwrite old files
- cp -rf phpMyAdmin-$pma_v-all-languages/* /usr/share/phpmyadmin
- # Set config and log directory
- sed -i "s|define('CONFIG_DIR', ROOT_PATH);|define('CONFIG_DIR', '/etc/phpmyadmin/');|" /usr/share/phpmyadmin/libraries/vendor_config.php
- sed -i "s|define('TEMP_DIR', ROOT_PATH . 'tmp/');|define('TEMP_DIR', '/var/lib/phpmyadmin/tmp/');|" /usr/share/phpmyadmin/libraries/vendor_config.php
- # Create temporary folder and change permission
- [ ! -d "/usr/share/phpmyadmin/tmp" ] && mkdir /usr/share/phpmyadmin/tmp
- chmod 777 /usr/share/phpmyadmin/tmp
-
- if [ -e /var/lib/phpmyadmin/blowfish_secret.inc.php ]; then
- chmod 0644 /var/lib/phpmyadmin/blowfish_secret.inc.php
- fi
- # Clear Up
- rm -fr phpMyAdmin-$pma_v-all-languages
- rm -f phpMyAdmin-$pma_v-all-languages.tar.gz
- echo "DB_PMA_ALIAS='phpmyadmin'" >> $HESTIA/conf/hestia.conf
- $HESTIA/bin/v-change-sys-db-alias 'pma' "phpmyadmin"
- fi
- #----------------------------------------------------------#
- # Configure PostgreSQL #
- #----------------------------------------------------------#
- if [ "$postgresql" = 'yes' ]; then
- echo "[ * ] Configuring PostgreSQL database server..."
- ppass=$(gen_pass)
- cp -f $HESTIA_INSTALL_DIR/postgresql/pg_hba.conf /etc/postgresql/*/main/
- systemctl restart postgresql
- sudo -iu postgres psql -c "ALTER USER postgres WITH PASSWORD '$ppass'" > /dev/null 2>&1
- # Configuring phpPgAdmin
- if [ "$apache" = 'yes' ]; then
- cp -f $HESTIA_INSTALL_DIR/pga/phppgadmin.conf /etc/apache2/conf.d/
- fi
- cp -f $HESTIA_INSTALL_DIR/pga/config.inc.php /etc/phppgadmin/
- echo "DB_PGA_ALIAS='phppgadmin'" >> $HESTIA/conf/hestia.conf
- $HESTIA/bin/v-change-sys-db-alias 'pga' "phppgadmin"
- fi
- #----------------------------------------------------------#
- # Configure Bind #
- #----------------------------------------------------------#
- if [ "$named" = 'yes' ]; then
- echo "[ * ] Configuring Bind DNS server..."
- cp -f $HESTIA_INSTALL_DIR/bind/named.conf /etc/bind/
- cp -f $HESTIA_INSTALL_DIR/bind/named.conf.options /etc/bind/
- chown root:bind /etc/bind/named.conf
- chown root:bind /etc/bind/named.conf.options
- chown bind:bind /var/cache/bind
- chmod 640 /etc/bind/named.conf
- chmod 640 /etc/bind/named.conf.options
- aa-complain /usr/sbin/named > /dev/null 2>&1
- echo "/home/** rwm," >> /etc/apparmor.d/local/usr.sbin.named 2> /dev/null
- if ! grep --quiet lxc /proc/1/environ; then
- systemctl status apparmor > /dev/null 2>&1
- if [ $? -ne 0 ]; then
- systemctl restart apparmor >> $LOG
- fi
- fi
- if [ "$release" = '20.04' ]; then
- update-rc.d named defaults
- systemctl start named
- else
- update-rc.d bind9 defaults
- systemctl start bind9
- fi
- check_result $? "bind9 start failed"
- # Workaround for OpenVZ/Virtuozzo
- if [ -e "/proc/vz/veinfo" ] && [ -e "/etc/rc.local" ]; then
- sed -i "s/^exit 0/service bind9 restart\nexit 0/" /etc/rc.local
- fi
- fi
- #----------------------------------------------------------#
- # Configure Exim #
- #----------------------------------------------------------#
- if [ "$exim" = 'yes' ]; then
- echo "[ * ] Configuring Exim mail server..."
- gpasswd -a Debian-exim mail > /dev/null 2>&1
- cp -f $HESTIA_INSTALL_DIR/exim/exim4.conf.template /etc/exim4/
- cp -f $HESTIA_INSTALL_DIR/exim/dnsbl.conf /etc/exim4/
- cp -f $HESTIA_INSTALL_DIR/exim/spam-blocks.conf /etc/exim4/
- touch /etc/exim4/white-blocks.conf
- if [ "$spamd" = 'yes' ]; then
- sed -i "s/#SPAM/SPAM/g" /etc/exim4/exim4.conf.template
- fi
- if [ "$clamd" = 'yes' ]; then
- sed -i "s/#CLAMD/CLAMD/g" /etc/exim4/exim4.conf.template
- fi
- chmod 640 /etc/exim4/exim4.conf.template
- rm -rf /etc/exim4/domains
- mkdir -p /etc/exim4/domains
- rm -f /etc/alternatives/mta
- ln -s /usr/sbin/exim4 /etc/alternatives/mta
- update-rc.d -f sendmail remove > /dev/null 2>&1
- systemctl stop sendmail > /dev/null 2>&1
- update-rc.d -f postfix remove > /dev/null 2>&1
- systemctl stop postfix > /dev/null 2>&1
- update-rc.d exim4 defaults
- systemctl start exim4 >> $LOG
- check_result $? "exim4 start failed"
- fi
- #----------------------------------------------------------#
- # Configure Dovecot #
- #----------------------------------------------------------#
- if [ "$dovecot" = 'yes' ]; then
- echo "[ * ] Configuring Dovecot POP/IMAP mail server..."
- gpasswd -a dovecot mail > /dev/null 2>&1
- cp -rf $HESTIA_INSTALL_DIR/dovecot /etc/
- cp -f $HESTIA_INSTALL_DIR/logrotate/dovecot /etc/logrotate.d/
- if [ "$release" = '18.04' ] || [ "$release" = '20.04' ]; then
- rm -f /etc/dovecot/conf.d/15-mailboxes.conf
- fi
- chown -R root:root /etc/dovecot*
- update-rc.d dovecot defaults
- systemctl start dovecot >> $LOG
- check_result $? "dovecot start failed"
- fi
- #----------------------------------------------------------#
- # Configure ClamAV #
- #----------------------------------------------------------#
- if [ "$clamd" = 'yes' ]; then
- gpasswd -a clamav mail > /dev/null 2>&1
- gpasswd -a clamav Debian-exim > /dev/null 2>&1
- cp -f $HESTIA_INSTALL_DIR/clamav/clamd.conf /etc/clamav/
- update-rc.d clamav-daemon defaults
- echo -ne "[ * ] Installing ClamAV anti-virus definitions... "
- /usr/bin/freshclam >> $LOG &
- BACK_PID=$!
- spin_i=1
- while kill -0 $BACK_PID > /dev/null 2>&1 ; do
- printf "\b${spinner:spin_i++%${#spinner}:1}"
- sleep 0.5
- done
- echo
- systemctl start clamav-daemon >> $LOG
- check_result $? "clamav-daemon start failed"
- fi
- #----------------------------------------------------------#
- # Configure SpamAssassin #
- #----------------------------------------------------------#
- if [ "$spamd" = 'yes' ]; then
- echo "[ * ] Configuring SpamAssassin..."
- update-rc.d spamassassin defaults > /dev/null 2>&1
- sed -i "s/ENABLED=0/ENABLED=1/" /etc/default/spamassassin
- systemctl start spamassassin >> $LOG
- check_result $? "spamassassin start failed"
- unit_files="$(systemctl list-unit-files |grep spamassassin)"
- if [[ "$unit_files" =~ "disabled" ]]; then
- systemctl enable spamassassin > /dev/null 2>&1
- fi
- fi
- #----------------------------------------------------------#
- # Configure Roundcube #
- #----------------------------------------------------------#
- if [ "$dovecot" = 'yes' ] && [ "$exim" = 'yes' ] && [ "$mysql" = 'yes' ]; then
- echo "[ * ] Configuring Roundcube webmail client..."
- cp -f $HESTIA_INSTALL_DIR/roundcube/main.inc.php /etc/roundcube/config.inc.php
- cp -f $HESTIA_INSTALL_DIR/roundcube/db.inc.php /etc/roundcube/debian-db-roundcube.php
- cp -f $HESTIA_INSTALL_DIR/roundcube/config.inc.php /etc/roundcube/plugins/password/
- cp -f $HESTIA_INSTALL_DIR/roundcube/hestia.php /usr/share/roundcube/plugins/password/drivers/
- touch /var/log/roundcube/errors
- chmod 640 /etc/roundcube/config.inc.php
- chown root:www-data /etc/roundcube/config.inc.php
- chmod 640 /etc/roundcube/debian-db-roundcube.php
- chown root:www-data /etc/roundcube/debian-db-roundcube.php
- chmod 640 /var/log/roundcube/errors
- chown www-data:adm /var/log/roundcube/errors
- r="$(gen_pass)"
- rcDesKey="$(openssl rand -base64 30 | tr -d "/" | cut -c1-24)"
- mysql -e "CREATE DATABASE roundcube"
- mysql -e "GRANT ALL ON roundcube.*
- TO roundcube@localhost IDENTIFIED BY '$r'"
- sed -i "s/%password%/$r/g" /etc/roundcube/debian-db-roundcube.php
- sed -i "s/%des_key%/$rcDesKey/g" /etc/roundcube/config.inc.php
- sed -i "s/localhost/$servername/g" /etc/roundcube/plugins/password/config.inc.php
- mysql roundcube < /usr/share/dbconfig-common/data/roundcube/install/mysql
- # Enable Roundcube plugins
- cp -f $HESTIA_INSTALL_DIR/roundcube/plugins/config_newmail_notifier.inc.php /etc/roundcube/plugins/newmail_notifier/config.inc.php
- cp -f $HESTIA_INSTALL_DIR/roundcube/plugins/config_zipdownload.inc.php /etc/roundcube/plugins/zipdownload/config.inc.php
-
- # Fixes for PHP 7.4 compatibility
- [ -f "/usr/share/roundcube/plugins/enigma/lib/enigma_ui.php" ] && sed -i 's/$identities, "\\n"/"\\n", $identities/g' /usr/share/roundcube/plugins/enigma/lib/enigma_ui.php
- [ -f "/usr/share/roundcube/program/lib/Roundcube/rcube_contacts.php" ] && sed -i 's/(array_keys($post_search), \x27|\x27)/(\x27|\x27, array_keys($post_search))/g' /usr/share/roundcube/program/lib/Roundcube/rcube_contacts.php
- [ -f "/usr/share/roundcube/program/lib/Roundcube/rcube_db.php" ] && sed -i 's/implode($name, \x27.\x27)/implode(\x27.\x27, $name)/g' /usr/share/roundcube/program/lib/Roundcube/rcube_db.php
- [ -f "/usr/share/roundcube/program/steps/addressbook/search.inc" ] && sed -i 's/$fields, \x27,\x27/\x27,\x27, $fields/g' /usr/share/roundcube/program/steps/addressbook/search.inc
- [ -f "/usr/share/roundcube/program/steps/addressbook/search.inc" ] && sed -i 's/implode($fields, \x27,\x27)/implode(\x27,\x27, $fields)/g' /usr/share/roundcube/program/steps/addressbook/search.inc
- [ -f "/usr/share/roundcube/program/steps/mail/sendmail.inc" ] && sed -i 's/implode($bstyle, \x27; \x27)/implode(\x27; \x27, $bstyle)/g' /usr/share/roundcube/program/steps/mail/sendmail.inc
-
- # Configure webmail alias
- echo "WEBMAIL_ALIAS='webmail'" >> $HESTIA/conf/hestia.conf
- # Add robots.txt
- echo "User-agent: *" > /var/lib/roundcube/robots.txt
- echo "Disallow: /" >> /var/lib/roundcube/robots.txt
- phpenmod mcrypt > /dev/null 2>&1
- # Restart services
- if [ "$apache" = 'yes' ]; then
- systemctl restart apache2 >> $LOG
- fi
- if [ "$nginx" = 'yes' ]; then
- systemctl restart nginx >> $LOG
- fi
- fi
- #----------------------------------------------------------#
- # Configure Fail2Ban #
- #----------------------------------------------------------#
- if [ "$fail2ban" = 'yes' ]; then
- echo "[ * ] Configuring fail2ban access monitor..."
- cp -rf $HESTIA_INSTALL_DIR/fail2ban /etc/
- if [ "$dovecot" = 'no' ]; then
- fline=$(cat /etc/fail2ban/jail.local |grep -n dovecot-iptables -A 2)
- fline=$(echo "$fline" |grep enabled |tail -n1 |cut -f 1 -d -)
- sed -i "${fline}s/true/false/" /etc/fail2ban/jail.local
- fi
- if [ "$exim" = 'no' ]; then
- fline=$(cat /etc/fail2ban/jail.local |grep -n exim-iptables -A 2)
- fline=$(echo "$fline" |grep enabled |tail -n1 |cut -f 1 -d -)
- sed -i "${fline}s/true/false/" /etc/fail2ban/jail.local
- fi
- if [ "$vsftpd" = 'yes' ]; then
- #Create vsftpd Log File
- if [ ! -f "/var/log/vsftpd.log" ]; then
- touch /var/log/vsftpd.log
- fi
- fline=$(cat /etc/fail2ban/jail.local |grep -n vsftpd-iptables -A 2)
- fline=$(echo "$fline" |grep enabled |tail -n1 |cut -f 1 -d -)
- sed -i "${fline}s/false/true/" /etc/fail2ban/jail.local
- fi
- if [ -f /etc/fail2ban/jail.d/defaults-debian.conf ]; then
- rm -f /etc/fail2ban/jail.d/defaults-debian.conf
- fi
- update-rc.d fail2ban defaults
- systemctl start fail2ban >> $LOG
- check_result $? "fail2ban start failed"
- fi
- #----------------------------------------------------------#
- # Configure API #
- #----------------------------------------------------------#
- if [ "$api" = 'yes' ]; then
- echo "API='yes'" >> $HESTIA/conf/hestia.conf
- else
- rm -r $HESTIA/web/api
- echo "API='no'" >> $HESTIA/conf/hestia.conf
- fi
- #----------------------------------------------------------#
- # Fix phpmyadmin #
- #----------------------------------------------------------#
- # Special thanks to Pavel Galkin (https://skurudo.ru)
- # https://github.com/skurudo/phpmyadmin-fixer
- if [ "$mysql" = 'yes' ]; then
- source $HESTIA_INSTALL_DIR/phpmyadmin/pma.sh > /dev/null 2>&1
- fi
- #----------------------------------------------------------#
- # Configure Admin User #
- #----------------------------------------------------------#
- # Deleting old admin user
- if [ ! -z "$(grep ^admin: /etc/passwd)" ] && [ "$force" = 'yes' ]; then
- chattr -i /home/admin/conf > /dev/null 2>&1
- userdel -f admin > /dev/null 2>&1
- chattr -i /home/admin/conf > /dev/null 2>&1
- mv -f /home/admin $hst_backups/home/ > /dev/null 2>&1
- rm -f /tmp/sess_* > /dev/null 2>&1
- fi
- if [ ! -z "$(grep ^admin: /etc/group)" ] && [ "$force" = 'yes' ]; then
- groupdel admin > /dev/null 2>&1
- fi
- # Enable sftp jail
- $HESTIA/bin/v-add-sys-sftp-jail > /dev/null 2>&1
- check_result $? "can't enable sftp jail"
- # Adding Hestia admin account
- $HESTIA/bin/v-add-user admin $vpass $email default "System Administrator"
- check_result $? "can't create admin user"
- $HESTIA/bin/v-change-user-shell admin nologin
- $HESTIA/bin/v-change-user-language admin $lang
- # Configuring system IPs
- $HESTIA/bin/v-update-sys-ip > /dev/null 2>&1
- # Get main IP
- ip=$(ip addr|grep 'inet '|grep global|head -n1|awk '{print $2}'|cut -f1 -d/)
- local_ip=$ip
- # Configuring firewall
- if [ "$iptables" = 'yes' ]; then
- $HESTIA/bin/v-update-firewall
- fi
- # Get public IP
- pub_ip=$(curl --ipv4 -s https://ip.hestiacp.com/)
- if [ ! -z "$pub_ip" ] && [ "$pub_ip" != "$ip" ]; then
- if [ -e /etc/rc.local ]; then
- sed -i '/exit 0/d' /etc/rc.local
- else
- touch /etc/rc.local
- fi
- check_rclocal=$(cat /etc/rc.local | grep "#!")
- if [ -z "$check_rclocal" ]; then
- echo "#!/bin/sh" >> /etc/rc.local
- fi
- echo "$HESTIA/bin/v-update-sys-ip" >> /etc/rc.local
- echo "exit 0" >> /etc/rc.local
- chmod +x /etc/rc.local
- systemctl enable rc-local > /dev/null 2>&1
- $HESTIA/bin/v-change-sys-ip-nat $ip $pub_ip > /dev/null 2>&1
- ip=$pub_ip
- fi
- # Configuring libapache2-mod-remoteip
- if [ "$apache" = 'yes' ] && [ "$nginx" = 'yes' ] ; then
- cd /etc/apache2/mods-available
- echo "<IfModule mod_remoteip.c>" > remoteip.conf
- echo " RemoteIPHeader X-Real-IP" >> remoteip.conf
- if [ "$local_ip" != "127.0.0.1" ] && [ "$pub_ip" != "127.0.0.1" ]; then
- echo " RemoteIPInternalProxy 127.0.0.1" >> remoteip.conf
- fi
- if [ ! -z "$local_ip" ] && [ "$local_ip" != "$pub_ip" ]; then
- echo " RemoteIPInternalProxy $local_ip" >> remoteip.conf
- fi
- if [ ! -z "$pub_ip" ]; then
- echo " RemoteIPInternalProxy $pub_ip" >> remoteip.conf
- fi
- echo "</IfModule>" >> remoteip.conf
- sed -i "s/LogFormat \"%h/LogFormat \"%a/g" /etc/apache2/apache2.conf
- a2enmod remoteip >> $LOG
- systemctl restart apache2
- fi
- # Configuring MariaDB host
- if [ "$mysql" = 'yes' ]; then
- $HESTIA/bin/v-add-database-host mysql localhost root $mpass
- fi
- # Configuring PostgreSQL host
- if [ "$postgresql" = 'yes' ]; then
- $HESTIA/bin/v-add-database-host pgsql localhost postgres $ppass
- fi
- # Adding default domain
- $HESTIA/bin/v-add-web-domain admin $servername
- check_result $? "can't create $servername domain"
- # Adding cron jobs
- export SCHEDULED_RESTART="yes"
- command="sudo $HESTIA/bin/v-update-sys-queue restart"
- $HESTIA/bin/v-add-cron-job 'admin' '*/2' '*' '*' '*' '*' "$command"
- systemctl restart cron
- command="sudo $HESTIA/bin/v-update-sys-queue daily"
- $HESTIA/bin/v-add-cron-job 'admin' '10' '00' '*' '*' '*' "$command"
- command="sudo $HESTIA/bin/v-update-sys-queue disk"
- $HESTIA/bin/v-add-cron-job 'admin' '15' '02' '*' '*' '*' "$command"
- command="sudo $HESTIA/bin/v-update-sys-queue traffic"
- $HESTIA/bin/v-add-cron-job 'admin' '10' '00' '*' '*' '*' "$command"
- command="sudo $HESTIA/bin/v-update-sys-queue webstats"
- $HESTIA/bin/v-add-cron-job 'admin' '30' '03' '*' '*' '*' "$command"
- command="sudo $HESTIA/bin/v-update-sys-queue backup"
- $HESTIA/bin/v-add-cron-job 'admin' '*/5' '*' '*' '*' '*' "$command"
- command="sudo $HESTIA/bin/v-backup-users"
- $HESTIA/bin/v-add-cron-job 'admin' '10' '05' '*' '*' '*' "$command"
- command="sudo $HESTIA/bin/v-update-user-stats"
- $HESTIA/bin/v-add-cron-job 'admin' '20' '00' '*' '*' '*' "$command"
- command="sudo $HESTIA/bin/v-update-sys-rrd"
- $HESTIA/bin/v-add-cron-job 'admin' '*/5' '*' '*' '*' '*' "$command"
- # Enable automatic updates
- $HESTIA/bin/v-add-cron-hestia-autoupdate apt
- # Building initital rrd images
- $HESTIA/bin/v-update-sys-rrd
- # Enabling file system quota
- if [ "$quota" = 'yes' ]; then
- $HESTIA/bin/v-add-sys-quota
- fi
- # Set backend port
- $HESTIA/bin/v-change-sys-port $port > /dev/null 2>&1
- # Set default theme
- $HESTIA/bin/v-change-sys-theme 'dark'
- # Set user account permissions for default 'admin' account
- $HESTIA/bin/v-change-user-role admin admin
- # Update remaining packages since repositories have changed
- echo -ne "[ * ] Installing remaining software updates..."
- apt-get -qq update
- apt-get -y upgrade >> $LOG &
- BACK_PID=$!
- echo
- # Starting Hestia service
- update-rc.d hestia defaults
- systemctl start hestia
- check_result $? "hestia start failed"
- chown admin:admin $HESTIA/data/sessions
- #----------------------------------------------------------#
- # Configure File Manager #
- #----------------------------------------------------------#
- echo "[ * ] Configuring File Manager..."
- $HESTIA/bin/v-add-sys-filemanager quiet
- #----------------------------------------------------------#
- # Hestia Access Info #
- #----------------------------------------------------------#
- # Comparing hostname and IP
- host_ip=$(host $servername| head -n 1 |awk '{print $NF}')
- if [ "$host_ip" = "$ip" ]; then
- ip="$servername"
- fi
- echo -e "\n"
- echo "===================================================================="
- echo -e "\n"
- # Sending notification to admin email
- echo -e "Congratulations!
- You have successfully installed Hestia Control Panel on your server.
- Ready to get started? Log in using the following credentials:
- Admin URL: https://$ip:$port
- Username: admin
- Password: $vpass
- Thank you for choosing Hestia Control Panel to power your full stack web server,
- we hope that you enjoy using it as much as we do!
- Please feel free to contact us at any time if you have any questions,
- or if you encounter any bugs or problems:
- E-mail: info@hestiacp.com
- Web: https://www.hestiacp.com/
- Forum: https://forum.hestiacp.com/
- Discord: https://discord.gg/nXRUZch
- GitHub: https://www.github.com/hestiacp/hestiacp
- Note: Automatic updates are enabled by default. If you would like to disable them,
- please log in and navigate to Server > Updates to turn them off.
- Help support the Hestia Contol Panel project by donating via PayPal:
- https://www.hestiacp.com/donate
- --
- Sincerely yours,
- The Hestia Control Panel development team
- Made with love & pride by the open-source community around the world.
- " > $tmpfile
- send_mail="$HESTIA/web/inc/mail-wrapper.php"
- cat $tmpfile | $send_mail -s "Hestia Control Panel" $email
- # Congrats
- echo
- cat $tmpfile
- rm -f $tmpfile
- # Add welcome message to notification panel
- $HESTIA/bin/v-add-user-notification admin 'Welcome to Hestia Control Panel!' '<br>You are now ready to begin <a href="/add/user/">adding user accounts</a> and <a href="/add/web/">domains</a>. For help and assistance, view the <a href="https://docs.hestiacp.com/" target="_new">documentation</a> or visit our <a href="https://forum.hestiacp.com/" target="_new">user forum</a>.<br><br>Please report any bugs or issues via <a href="https://github.com/hestiacp/hestiacp/issues" target="_new"><i class="fab fa-github"></i> GitHub</a> or e-mail <a href="mailto:info@hestiacp.com?Subject="['$new_version'] Bug Report: ">info@hestiacp.com</a>.<br><br><b>Have a wonderful day!</b><br><br><i class="fas fa-heart status-icon red"></i> The Hestia Control Panel development team'
- echo "[ ! ] IMPORTANT: You must logout or restart the server before continuing."
- echo ""
- if [ "$interactive" = 'yes' ]; then
- echo -n " Do you want to reboot now? [Y/N] "
- read reboot
- if [ "$reboot" = "Y" ] || [ "$reboot" = "y" ]; then
- reboot
- fi
- fi
- # EOF
|