Backup before deletion
This commit is contained in:
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
services:
|
||||||
|
web:
|
||||||
|
image: caddy:latest
|
||||||
|
container_name: site-pro
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- /home/lucas/site-pro/html:/srv # Dossier contenant les fichiers statiques
|
||||||
|
- /home/lucas/site-pro/Caddyfile:/etc/caddy/Caddyfile # Fichier de configuration de Caddy
|
||||||
|
networks:
|
||||||
|
- reverse-proxy
|
||||||
|
|
||||||
|
networks:
|
||||||
|
reverse-proxy:
|
||||||
|
external: true
|
||||||
11
html/index.html
Normal file
11
html/index.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Lucas Royer Pro</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h2>pro.lucasroyer.fr : deuxième site en construction</h2>
|
||||||
|
<a href="versions.html">Versions</a>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
13
html/versions.html
Normal file
13
html/versions.html
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Versions</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>template-generator:0.02</p>
|
||||||
|
<p>fleet-algorithm:0.01</p>
|
||||||
|
<p>fleetrunner:0.001</p>
|
||||||
|
<p>fleetphilippe:0.001</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user