minmal test

This commit is contained in:
JP100099 2025-07-10 17:26:34 +02:00
parent aa00f182d2
commit 6d19a616a8
3 changed files with 18 additions and 0 deletions

0
config/nginx.conf Normal file
View file

7
docker-compose.yaml Normal file
View file

@ -0,0 +1,7 @@
services:
nginx:
image: nginx
ports:
- 8000:80
volumes:
- ./src:/usr/share/nginx/html

11
src/index.html Normal file
View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Old Rabbit Town</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>