Backup before deletion

This commit is contained in:
Lucas
2025-09-24 08:37:59 +00:00
commit 35b1f8c58c
5 changed files with 42 additions and 0 deletions

0
.gitignore vendored Normal file
View File

4
Caddyfile Normal file
View File

@@ -0,0 +1,4 @@
:80 {
root * /srv
file_server
}

14
docker-compose.yml Normal file
View 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
View 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
View 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>