I think I have found the issue, when I go an edit a site, in the vhosts file, it will delete part of the DocumentRoot. So, when I click save, it will change it to:
Code:
<VirtualHost 172.21.152.31:80>
DocumentRoot /8bitclassics.com/web
ServerName 8bitclassics.com
ServerAlias www.8bitclassics.com
ServerAdmin webmaster@8bitclassics.com
And have to change it to
Code:
<VirtualHost 172.21.152.31:80>
DocumentRoot /var/www/8bitclassics.com/web
ServerName 8bitclassics.com
ServerAlias www.8bitclassics.com
ServerAdmin webmaster@8bitclassics.com
Where can I go to fix this so I don't have to add it everytime?