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.
Accepted Answer
Hi @artctrldelinfob0d23996f849,
It seems to me like the source of the issue is coming from your Apache virtual config file. Can you please provide me with your config file(the new one that you said you’ve created) so that I can see everything is configured properly?
What I believe most probably the issue to be is a left reference to the old domain somewhere in the config file.
Additionally, did you try to enable the config file? What you need to do is :
sudo a2ensite example.com.conf
Once done, you also need to restart apache
sudo systemctl restart apache2
One last thing, if everything seems okay but you still experience the issue, I’ll recommend just creating a new config file without copying anything over.
You can use this for reference:
sudo nano /etc/apache2/sites-available/example-new.com.conf
then inside add the following
<VirtualHost *:80>
ServerAdmin admin@example.com
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/example.com/public_html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
sudo a2ensite example-new.com.conf
sudo systemctl restart apache2
and that should be it.
Regards, KFSys
I have memcached my droplet and all the sudden it worked. I wanna say BIG thank you for your help, it means A LOT!!!
Thanks my good person, you rock!