bye bye site, tmp placeholder
All checks were successful
update neo with compose files / update (push) Successful in 5s
All checks were successful
update neo with compose files / update (push) Successful in 5s
This commit is contained in:
parent
b19bf603ea
commit
0605fe1178
4 changed files with 29 additions and 5 deletions
4
.gitmodules
vendored
4
.gitmodules
vendored
|
@ -1,10 +1,6 @@
|
||||||
[submodule "env"]
|
[submodule "env"]
|
||||||
path = env
|
path = env
|
||||||
url = git@git.ixvd.net:infra/env
|
url = git@git.ixvd.net:infra/env
|
||||||
[submodule "custom/ixvd-site"]
|
|
||||||
path = custom/ixvd-site
|
|
||||||
url = git@git.ixvd.net:this/site
|
|
||||||
|
|
||||||
[submodule "custom/faulty-site"]
|
[submodule "custom/faulty-site"]
|
||||||
path = custom/faulty-site
|
path = custom/faulty-site
|
||||||
url = git@git.ixvd.net:didier/site
|
url = git@git.ixvd.net:didier/site
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit bea37577df63b3505173b24d189185c20f2b1b0f
|
|
3
custom/web-placeholder/Dockerfile
Normal file
3
custom/web-placeholder/Dockerfile
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
FROM nginx
|
||||||
|
|
||||||
|
COPY www /usr/share/nginx/html
|
26
custom/web-placeholder/www/index.html
Normal file
26
custom/web-placeholder/www/index.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!-- "We'll be right back" in the center of the screen -->
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Web Placeholder</title>
|
||||||
|
<style>
|
||||||
|
html, body {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 24px;
|
||||||
|
color: #444;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div>We'll be right back.</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
Reference in a new issue