Ood1.8 fresh install on Centos7.8 with Apache/2.4.34

Rebuilt again from Scratch. It least I have gotten the Login Page to load. Here is how I built it. First step be sure your hostname is in DNS, then do this steps.

OS=CentOS7
yum update -y

vi /etc/selinux/config
SELINUX=disabled

systemctl disable firewalld
systemctl stop firewalld

yum install centos-release-scl
yum install httpd24
yum install rh-ruby25
yum install rh-nodejs10

yum install https://yum.osc.edu/ondemand/1.8/ondemand-release-web-1.8-1.noarch.rpm

yum install ondemand
yum install ondemand-dex

vi /opt/rh/httpd24/root/etc/httpd/conf/httpd.conf
ServerName XXXXXXXX (Replace with XXX not real hostname)

vi /opt/rh/httpd24/root/etc/httpd/conf.modules.d/00-mpm.conf
#LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
LoadModule mpm_worker_module modules/mod_mpm_worker.so

systemctl start httpd24-httpd
systemctl enable httpd24-httpd
systemctl start ondemand-dex
systemctl enable ondemand-dex

Hopefully this will help someone with a fresh install from RPM
Thanks for the Help. I will open new Help when I need it.