Add basic HTML content for nginx webserver

This commit is contained in:
Adolfo Delorenzo 2025-07-19 00:52:14 +00:00
parent b8274abf9e
commit 7f2eb6737d

46
html/index.html Normal file
View File

@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>nginx02 - Portainer Deployment</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
.container {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #333;
text-align: center;
}
.info {
background: #e8f4fd;
padding: 15px;
border-left: 4px solid #2196F3;
margin: 20px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to nginx02</h1>
<div class="info">
<p><strong>Stack:</strong> nginx02</p>
<p><strong>Environment:</strong> docker03</p>
<p><strong>Deployed via:</strong> Portainer with GitOps</p>
<p><strong>Repository:</strong> git.oe74.net/adelorenzo/portainer-yaml</p>
</div>
<p>This nginx server was deployed successfully using Portainer from a Git repository.</p>
</div>
</body>
</html>