Experience: is what you get soon after you need it.

Experience: is what you get soon after you need it.



My Cloud Certifications:

Certified Kubernetes Administrator (CKA)

Cloud Certified Security Professional (ISC2)

CyberSecurity Certified Professional (ISC2)

AWS Certified Solutions Architect Associate

Azure Certified Architect Expert

Azure Certified Architect

Azure Certified Administrator

Oracle Cloud Infrastructure 2018 Certified Architect Associate.

Oracle Cloud Infrastructure Classic 2018 Certified Architect Associate.

Oracle Database Cloud Administrator Certified Professional.

Oracle Database Cloud Service Operations Certified Associate.

Search This Blog

Showing posts with label deploy-website. Show all posts
Showing posts with label deploy-website. Show all posts

Saturday, September 16, 2017

Deploy a website on windows-7 via IIS

My friend had requested me to deploy a website on windows-7 via IIS on his VM for some load balancer testing.


Here is the code for the webpage and create a file named index.html on the VM/windows machine preferably in C:/ and I created in C:/shaik-site folder.

Give the above path on the IIS while
index.html
<!DOCTYPE html>
<html lang="en-us">
<head>
<style>
body  {
    background-image: url("paper.gif");
    background-color: #cccccc;
}
h1   {color: Black;}
p    {color: Green;}
</style>
</head>
<body>

<h1> TESTING NETSCALE</h1>
<p>vm-machine-1</p>
</body>
</html>




Give the path  C:/shaik-site on the IIS while creating the site and deploy it.