open domain from IP address in cPanel (disable default cPanel page)
copy the file:
cp -pv /var/cpanel/templates/apache2_4/ea4_main.default /var/cpanel/templates/apache2_4/ea4_main.local
then update the skeleton in order to show the site over IP, something like this:
<virtualhost put_main_server_ip_here:80>
ServerName put_main_server_ip_here
DocumentRoot /home/username/public_html
ServerAdmin some@email
<directory "/">
AllowOverride All
</directory>
<ifmodule suphp_module>
suPHP_UserGroup username username
</ifmodule>
</virtualhost>
on file:
nano /var/cpanel/templates/apache2_4/ea4_main.local
rebuild the config and restart Apache:
/scripts/rebuildhttpdconf
service httpd restart