Hello,
It is due to the default virtualhost entries are missing. Add following lines immediately after NameVirtualHost definitions ( make sure you edit IP, Hostname and email address ) and run distiller , restart apache.
===========
<VirtualHost <shared IP>:80>
ServerName 198.235.134.106
DocumentRoot /usr/local/apache/htdocs
ServerAdmin
[email protected]
<IfModule mod_suphp.c>
suPHP_UserGroup nobody nobody
</IfModule>
</VirtualHost>
# Default vhost for unbound IPs
<VirtualHost *>
ServerName <hostname>
DocumentRoot /usr/local/apache/htdocs
ServerAdmin
[email protected]
<IfModule mod_suphp.c>
suPHP_UserGroup nobody nobody
</IfModule>
</VirtualHost>
====================
Run another conf rebuild to make sure it persists.