Created
October 27, 2024 07:14
-
-
Save azer/e719cae2708a7d28874316ede8dd96aa to your computer and use it in GitHub Desktop.
nginx_default.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Welcome</title> | |
<style> | |
body { | |
font-family: -apple-system, BlinkMacSystemFont, sans-serif; | |
line-height: 1.6; | |
margin: 0; | |
padding: 0; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
min-height: 100vh; | |
background: #f5f5f5; | |
} | |
.container { | |
background: white; | |
padding: 2rem 3rem; | |
border-radius: 8px; | |
box-shadow: 0 2px 4px rgba(0,0,0,0.1); | |
text-align: center; | |
max-width: 600px; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Welcome to Your Server!</h1> | |
<p>Server is ready. Use management script to add sites.</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment