#!/bin/bash yum update -y yum install httpd -y systemctl start httpd systemctl enable httpd cd /var/www/html echo "

This is Web Server 1

" > index.html