Files
2026-07-26 09:35:26 +02:00

47 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Nginx - Development</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.container {
text-align: center;
background: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
h1 {
color: #333;
margin-bottom: 20px;
}
.env-badge {
display: inline-block;
padding: 10px 20px;
border-radius: 5px;
font-size: 24px;
font-weight: bold;
color: white;
background-color: #3498db;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Nginx</h1>
<div class="env-badge">
DEVELOPMENT ENVIRONMENT
</div>
<p style="margin-top: 20px; color: #666;">This is the development deployment</p>
</div>
</body>
</html>