Apache Web Server Basic Installation On CentOS 7
How to install Apache http service on a Centos 7 Linux machine
Steps:
yum install httpd -y
firewall-cmd –permanent –add-service=http
firewall-cmd –reload
systemctl start httpd
systemctl status httpd
systemctl enable httpd
cd /var/www/html/
vi index.html
centos 7