It works!

This is the default web page for this server.

The web server software is running but no content has been added, yet.

Tutorials at:
Installation: * https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mariadb-php-lamp-stack-on-debian-11
Virtulization: * https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-centos-7
Encryption: * https://www.digitalocean.com/community/tutorials/how-to-secure-apache-with-let-s-encrypt-on-debian-11
Life Example: * life.php


    #  vi /etc/apt/sources.list
       * Remove Devuan CD as a source

    #  apt update

    #  apt upgrade

    #  update-alternatives --config editor

    #  apt install mariadb-server

    #  mysql_secure_installation 
       * Secure Installation

    #  apt install php libapache2-mod-php php-mysql

    #  cd /var/www/

    #  gzip -d virtualHosts.tgz  |tar -xvf -

    #  cd /etc/apache2/sites-available

    #  cp -p 000-default.conf www.yconnect.net
       * Add servername / serveralias

    #  cp -p 000-default.conf x301.yconnect.net

    #  a2ensite www.yconnect.net 

    #  a2ensite x301.yconnect.net 

    #  service apache2 reload

    #  apt install python3-certbot-apache 
       * Certbot installs a cron job to renew certificates every 12 hours with random sleep

    #  sudo certbot --apache -d yconnect.net -d www.yconnect.net
       * Agree to terms and provide email

    #  certbot --apache -d x301.yconnect.net

    #  certbot renew --dry-run
       * Will check if renew process is streamlined