404
This commit is contained in:
parent
5024b60132
commit
e8a0b9383f
@ -3,3 +3,4 @@ FROM nginx:latest
|
|||||||
COPY privkey.pem /etc/nginx/
|
COPY privkey.pem /etc/nginx/
|
||||||
COPY fullchain.pem /etc/nginx/
|
COPY fullchain.pem /etc/nginx/
|
||||||
COPY default.conf /etc/nginx/conf.d/
|
COPY default.conf /etc/nginx/conf.d/
|
||||||
|
COPY index.html /usr/share/nginx/html/
|
||||||
|
@ -5,6 +5,9 @@ server {
|
|||||||
server_name _; # managed by Certbot
|
server_name _; # managed by Certbot
|
||||||
client_max_body_size 70M;
|
client_max_body_size 70M;
|
||||||
|
|
||||||
|
location /404 {
|
||||||
|
try_files $uri $uri/ /index.html;
|
||||||
|
}
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
if ($host = quiz.pena.digital) {
|
if ($host = quiz.pena.digital) {
|
||||||
|
188
index.html
Normal file
188
index.html
Normal file
@ -0,0 +1,188 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html class="no-js" lang="">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>404</title>
|
||||||
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<meta name="description" content="">
|
||||||
|
|
||||||
|
<meta property="og:title" content="">
|
||||||
|
<meta property="og:type" content="">
|
||||||
|
<meta property="og:url" content="">
|
||||||
|
<meta property="og:image" content="">
|
||||||
|
|
||||||
|
<link rel="icon" href="/favicon.ico" sizes="any">
|
||||||
|
<link rel="icon" href="/icon.svg" type="image/svg+xml">
|
||||||
|
<link rel="apple-touch-icon" href="icon.png">
|
||||||
|
|
||||||
|
<link rel="manifest" href="site.webmanifest">
|
||||||
|
<meta name="theme-color" content="#fafafa">
|
||||||
|
<style>
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
box-sizing: border-box
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
color: #4D4D4D;
|
||||||
|
display: table;
|
||||||
|
font-family: Rubik;
|
||||||
|
height: 100%;
|
||||||
|
text-align: center;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin: 2em auto;
|
||||||
|
background: #F2F3F7;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: #4D4D4D;
|
||||||
|
font-size: 200px;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 0 auto;
|
||||||
|
color: #4D4D4D;
|
||||||
|
max-width: 473px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 18px;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: flex;
|
||||||
|
width: 180px;
|
||||||
|
padding: 10px 20px;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
border-radius: 8px;
|
||||||
|
border: 1px solid #7E2AEA;
|
||||||
|
background: #7E2AEA;
|
||||||
|
color: white;
|
||||||
|
font-size: 18px;
|
||||||
|
margin: 0 auto;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
background: #581CA7;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:active {
|
||||||
|
background: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
svg {
|
||||||
|
margin-bottom: 14px;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container-p-a {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 30px;
|
||||||
|
padding-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container-404 {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1000px) {
|
||||||
|
section {
|
||||||
|
height: 100vh;
|
||||||
|
padding-top: 167px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 600px) {
|
||||||
|
h1 {
|
||||||
|
font-size: 140px;
|
||||||
|
}
|
||||||
|
|
||||||
|
svg {
|
||||||
|
width: 95px;
|
||||||
|
height: 116px;
|
||||||
|
}
|
||||||
|
|
||||||
|
section {
|
||||||
|
padding: 167px 16px 0 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<section>
|
||||||
|
<div class="container-404">
|
||||||
|
<h1>4</h1>
|
||||||
|
<svg width="140" height="171" viewBox="0 0 140 171" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M60.1765 164.358C50.7433 164.358 42.7051 162.963 36.062 160.173C29.4189 157.383 23.9716 153.53 19.72 148.614C15.4684 143.698 12.2797 138.052 10.1539 131.674C8.02811 125.164 6.76592 118.255 6.36734 110.948C6.23447 107.361 6.10161 103.441 5.96875 99.1896V86.0362C6.10161 81.6518 6.23447 77.5995 6.36734 73.8793C6.63306 66.5719 7.89525 59.7295 10.1539 53.3521C16.9299 33.8214 39.8486 -0.0584642 55.7921 0.938002C69.6683 1.80527 76.972 11.1671 83.5144 19.5531C86.838 23.8133 89.9652 27.8217 93.6578 30.3365C99.1106 34.4227 106.999 36.7595 114.705 39.0423C126.715 42.5998 138.281 46.0261 139.495 55.7377C140.514 63.884 134.142 70.5245 127.561 77.3832C121.262 83.9481 114.771 90.713 114.384 99.1896C114.384 103.441 114.251 107.361 113.986 110.948C113.72 118.255 112.524 125.164 110.398 131.674C108.273 138.052 105.084 143.698 100.832 148.614C96.5807 153.53 91.067 157.383 84.291 160.173C77.6479 162.963 69.6097 164.358 60.1765 164.358ZM79.1047 133.078C75.1188 138.658 68.8079 141.448 60.1718 141.448C51.8015 141.448 45.557 138.658 41.4383 133.078C37.3195 127.365 35.1273 119.659 34.8616 109.96C34.8616 106.107 34.7951 102.254 34.6623 98.4006V86.443C34.7951 82.4571 34.8616 78.6705 34.8616 75.0833C35.1273 65.65 37.2531 58.0769 41.239 52.3638C45.3577 46.5179 51.6686 43.5949 60.1718 43.5949C68.8079 43.5949 75.1188 46.5179 79.1047 52.3638C83.2234 58.0769 85.3492 65.65 85.4821 75.0833C85.7478 78.6705 85.8807 82.4571 85.8807 86.443V98.4006C85.8807 102.254 85.7478 106.107 85.4821 109.96C85.3492 119.659 83.2234 127.365 79.1047 133.078Z" fill="#A35FFA"/>
|
||||||
|
<g filter="url(#filter0_d_4600_1206)">
|
||||||
|
<path d="M60.6473 164.286C51.2195 164.286 43.186 162.892 36.5467 160.104C29.9074 157.315 24.4632 153.464 20.214 148.551C15.9649 143.638 12.778 137.995 10.6535 131.621C8.52888 125.115 7.26742 118.21 6.86906 110.907C6.73627 107.321 6.60349 103.404 6.4707 99.1551C6.4707 94.7732 6.4707 90.3913 6.4707 86.0093C6.60349 81.6274 6.73627 77.5774 6.86906 73.8594C7.13463 66.5562 8.3961 59.7178 10.6535 53.344C12.9108 46.8375 16.1641 41.1941 20.4132 36.4139C24.7951 31.6336 30.3057 27.8492 36.945 25.0607C43.5843 22.2722 51.4851 20.8779 60.6473 20.8779C69.9423 20.8779 77.9094 22.2722 84.5487 25.0607C91.188 27.8492 96.6322 31.6336 100.881 36.4139C105.263 41.1941 108.517 46.8375 110.641 53.344C112.898 59.7178 114.16 66.5562 114.425 73.8594C114.691 77.5774 114.824 81.6274 114.824 86.0093C114.824 90.3913 114.824 94.7732 114.824 99.1551C114.824 103.404 114.691 107.321 114.425 110.907C114.16 118.21 112.965 125.115 110.84 131.621C108.716 137.995 105.529 143.638 101.28 148.551C97.0306 153.464 91.52 157.315 84.7479 160.104C78.1086 162.892 70.0751 164.286 60.6473 164.286ZM60.6473 141.381C69.2783 141.381 75.5857 138.592 79.5692 133.015C83.6856 127.306 85.8102 119.604 85.9429 109.911C86.2085 106.06 86.3413 102.209 86.3413 98.3584C86.3413 94.3748 86.3413 90.3913 86.3413 86.4077C86.3413 82.4241 86.2085 78.6397 85.9429 75.0545C85.8102 65.6267 83.6856 58.0579 79.5692 52.3481C75.5857 46.5056 69.2783 43.5843 60.6473 43.5843C52.149 43.5843 45.8417 46.5056 41.7253 52.3481C37.7417 58.0579 35.6172 65.6267 35.3516 75.0545C35.3516 78.6397 35.2852 82.4241 35.1524 86.4077C35.1524 90.3913 35.1524 94.3748 35.1524 98.3584C35.2852 102.209 35.3516 106.06 35.3516 109.911C35.6172 119.604 37.8081 127.306 41.9245 133.015C46.0408 138.592 52.2818 141.381 60.6473 141.381Z" fill="#7E2AEA"/>
|
||||||
|
</g>
|
||||||
|
<ellipse cx="127.266" cy="117.409" rx="9.78603" ry="9.78603" transform="rotate(-13.417 127.266 117.409)" fill="#A35FFA"/>
|
||||||
|
<g filter="url(#filter1_d_4600_1206)">
|
||||||
|
<circle cx="32.1712" cy="80.2763" r="18.2801" transform="rotate(-13.417 32.1712 80.2763)" fill="#A35FFA"/>
|
||||||
|
</g>
|
||||||
|
<circle cx="92.5518" cy="14.043" r="3.72801" transform="rotate(-13.417 92.5518 14.043)" fill="#7E2AEA"/>
|
||||||
|
<defs>
|
||||||
|
<filter id="filter0_d_4600_1206" x="0.525074" y="8.98667" width="126.19" height="161.246" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||||
|
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||||
|
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||||
|
<feMorphology radius="1.48641" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_4600_1206"/>
|
||||||
|
<feOffset dx="2.97281" dy="-2.97281"/>
|
||||||
|
<feGaussianBlur stdDeviation="3.71602"/>
|
||||||
|
<feComposite in2="hardAlpha" operator="out"/>
|
||||||
|
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||||
|
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4600_1206"/>
|
||||||
|
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4600_1206" result="shape"/>
|
||||||
|
</filter>
|
||||||
|
<filter id="filter1_d_4600_1206" x="6.45468" y="50.0737" width="54.4052" height="54.4052" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||||
|
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||||
|
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||||
|
<feMorphology radius="1.48641" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_4600_1206"/>
|
||||||
|
<feOffset dx="1.48641" dy="-3"/>
|
||||||
|
<feGaussianBlur stdDeviation="3.71602"/>
|
||||||
|
<feComposite in2="hardAlpha" operator="out"/>
|
||||||
|
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||||
|
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4600_1206"/>
|
||||||
|
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4600_1206" result="shape"/>
|
||||||
|
</filter>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
<h1 style="margin-left: -13px">4</h1>
|
||||||
|
</div>
|
||||||
|
<div class="container-p-a">
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Страница не найдена
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Посетите главную страницу, возможно вы найдете ее
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<a href="/">На главную</a>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user