PostfixAdmin – Set Up A Mail Server with PostfixAdmin on Ubuntu | Debian – Part 9 – Install and Configure WebMail for Mail Server with RoundCubeMail
✳️ Code in this video: Note - Replace the orange-highlighted information with your own details CREATE DATABASE roundcube_db; CREATE USER roundcube_user@localhost IDENTIFIED BY 'roundcube_PWD'; GRANT ALL ON roundcube_db.* TO roundcube_user@localhost; FLUSH PRIVILEGES; apt install php libapache2-mod-php php-common php-mysql php-cli php-pear php-opcache php-gd php-curl php-cli php-imap php-mbstring php-intl php-soap php-ldap php-imagick php-xmlrpc php-xml php-zip -y <VirtualHost *:80> DocumentRoot /var/www/roundcube ServerName webmail.totatca.xyz <Directory /var/www/roundcube/> Options -Indexes AllowOverride All Order allow,deny Allow from all </Directory> ErrorLog ${APACHE_LOG_DIR}/roundcube_error.log CustomLog ${APACHE_LOG_DIR}/roundcube_access.log combined </VirtualHost>
Thank You !!!