Setup Web Server# On Ubuntu# Bash1 2sudo apt update sudo apt install apache2 -y Where is the main page# Bash1 2cd /var/www/html ls -al Set up HTTPS# Bash 1 2 3 4 5 6 7 8 9 10sudo a2enmod ssl sudo systemctl restart apache2 cd /etc/apache2/sites-available # Edit the SSL conf file if required # Enable the site a2ensite default-ssl.conf systemctl reload apache2 Test# Bash1curl -v https://[address]