Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Chrome (as of 8 July 2025) now displays an error/warning for the SSL certificate
A couple of extra steps are needed
First, add the Subject Alternate Name to the certificates, eg:
sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
-keyout /etc/ssl/private/your_domain.key -out /etc/ssl/certs/your_domain.crt \
-subj "/C=UK/ST=Worcestershire/L=Worcester/O=ACME/OU=IT/CN=your_domain" \
-addext "subjectAltName=DNS:localhost,DNS:your_domain"
Second, export and import the certificate into Chrome
Go to the website with the SSL error
Click on “not secure” next to the URL
Click on certificate details
Click on the details tab and click on “export” to save the file
In a separate tab, enter chrome://certificate-manager/localcerts/usercerts or go to Settings > Privacy and security > Security > Manage Certificates > Local Certificates > Custom > Installed by you
Click on Trusted certificates > import and select the file just exported
Refresh the browser for your website
sudo rm /var/www/html/index.html sudo nano /var/www/html/index.html <h1>Conexion SSL</h1>
sudo apt-get install openssl sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/ssl/private/apache-selfsigned.key -out /etc/ssl/certs/apache-selfsigned.crt
sudo cp /etc/apache2/sites-available/default-ssl.conf /etc/apache2/sites-available/default-ssl.conf.bak sudo nano /etc/apache2/sites-available/default-ssl.conf + ServerAdmin xgabina001@ehu.eus + ServerName 34.105.232.127 + SSLCertificateFile /etc/ssl/certs/apache-selfsigned.crt + SSLCertificateKeyFile /etc/ssl/private/apache-selfsigned.key sudo nano /etc/apache2/sites-available/000-default.conf + Redirect permanent “/” “https://34.105.232.127/”
sudo a2enmod ssl sudo a2enmod headers sudo a2ensite default-ssl sudo apache2ctl configtest sudo systemctl restart apache2