! # /bin/sh # ################################################ # Server Configuration for Centos 7 # # ################################################ # # updating packages yum update -y # # installing dependencies yum install unzip -y yum install nano -y yum install sed -y yum install screen -y # # installing HTTP Server (Powered By Apache) yum install httpd mod_ssl -y # # starting HTTP Services systemctl start httpd ...