update shit
This commit is contained in:
parent
4e9a06fbcb
commit
2e13f886dc
|
@ -2,3 +2,4 @@ logs/*
|
||||||
ssl/*
|
ssl/*
|
||||||
sites-enabled/*
|
sites-enabled/*
|
||||||
!sites-enabled/example.conf.tplm
|
!sites-enabled/example.conf.tplm
|
||||||
|
!sites-enabled/http_redirect.conf
|
|
@ -1,2 +1,18 @@
|
||||||
<h1 style='color:red'>Error 404: Not found :-(</h1>
|
<!DOCTYPE html>
|
||||||
<p>I have no idea where that file is, sorry. Are you sure you typed in the correct URL?</p>
|
<html>
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
.center {
|
||||||
|
display: block;
|
||||||
|
margin: 0 auto;
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
margin: -208px 0 0 -208px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<img src="https://resources.softsols.ru/404.jpg" alt="oh no..." width="416" height="416" class="center">
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -4,8 +4,11 @@
|
||||||
<style>
|
<style>
|
||||||
.center {
|
.center {
|
||||||
display: block;
|
display: block;
|
||||||
margin-left: auto;
|
margin: 0 auto;
|
||||||
margin-right: auto;
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
margin: -306px 0 0 -244px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 20 KiB |
Binary file not shown.
After Width: | Height: | Size: 45 KiB |
|
@ -0,0 +1,5 @@
|
||||||
|
server {
|
||||||
|
listen 80 default_server;
|
||||||
|
listen [::]:80 default_server;
|
||||||
|
rewrite ^(.*) https://$host$1 permanent;
|
||||||
|
}
|
Loading…
Reference in New Issue