coursework/ansible/roles/nginx_proxy/templates/site_down.html.j2

36 lines
902 B
Plaintext
Raw Permalink Normal View History

2024-11-17 15:46:24 +00:00
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Сайт не работает</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8d7da;
color: #721c24;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.message {
text-align: center;
}
h1 {
font-size: 48px;
margin-bottom: 20px;
}
p {
font-size: 18px;
}
</style>
</head>
<body>
<div class="message">
<h1>Сайт не работает</h1>
<p>Просьба обратиться в техподдержку или на сервере в данный момент техработы.</p>
</div>
</body>
</html>