Skip to main content

Default Web Stack


#!/bin/bash

echo " Installing Web Server "

sudo yum install httpd -y 

echo " Starting Web service "

sudo systemctl start httpd

echo " enable Web Service "

sudo systemctl enable httpd

echo " Enable Web Content "

echo '<!DOCTYPE html>

<html>

<body>

<h1> Welcome to KartikeyaSoft Azure Training <h1>

<h1 style="background-color:Tomato;">Tomato</h1>

<h1 style="background-color:Orange;">Orange</h1>

<h1 style="background-color:DodgerBlue;">DodgerBlue</h1>

<h1 style="background-color:MediumSeaGreen;">MediumSeaGreen</h1>

<h1 style="background-color:Gray;">Gray</h1>

<h1 style="background-color:SlateBlue;">SlateBlue</h1>

<h1 style="background-color:Violet;">Violet</h1>

<h1 style="background-color:LightGray;">LightGray</h1>

</body>

</html>' > index.html


echo " Moving Index File"

sudo mv index.html /var/www/html/

Comments