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!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi @chsoneal,
Can you confirm you’ve created separate Vhost files for your websites? If you haven’t please make sure you have like so
Create the Vhost for your domain in Directory - /etc/apache2/sites-available/example.com.conf where example.com.conf is your domain name. The file should contain the following
<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
ServerAdmin webmaster@example.com
DocumentRoot /var/www/example.com/public_html
<Directory /var/www/example.com/public_html>
Options -Indexes +FollowSymLinks
AllowOverride All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/example.com-error.log
CustomLog ${APACHE_LOG_DIR}/example.com-access.log combined
</VirtualHost>
Please note, you’ll need to replace example.com with your domain name. Once you have created your website, type in the following
sudo a2ensite example.com
And then create your symlink
udo ln -s /etc/apache2/sites-available/example.com.conf /etc/apache2/sites-enabled/
Restart your Apache and you are ready to go!
Regards, KDSYs