I sent a ticket for this, but I promise to post the solution. I re-entered the a2ensite command and got the message site coolaberate.com is already enabled.
NameVirtualHost *:80 file are OK? <VirtualHost *:80> Server Admin webmaster@mysite.com Server Name mysite.com Server Alias www.mysite.com
DocumentRoot /var/www/mysite.com/public_html/
error logs /var/www/mysite/logs/error.log
#Possible Values include: debug, info, notice, warn, error, crit, #alert, emerg. Log Leve warn
Custom Log /var/www/mysite/logs/access.log combined </VirtualHost>
I can’t see my content with my IP address - I get a 404 message and when I enter my domain, I get a server error
I was able to see my content before I set up Virtual server using my IP address
Any suggestions?
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.
Click below to sign up and get $100 of credit to try our products over 60 days!
Try replacing it with the following and then restarting/reloading Apache:
<pre><VirtualHost *:80> ServerName mysite.com ServerAlias www.mysite.com
DocumentRoot /var/www/mysite.com/public_html
ErrorLog /var/www/mysite/logs/error.log CustomLog /var/www/mysite/logs/access.log combined </VirtualHost></pre>. <br> <br>Does that fix it?