From 6d19a616a87721e01c538964fc7f1813e42a52a7 Mon Sep 17 00:00:00 2001 From: JP100099 Date: Thu, 10 Jul 2025 17:26:34 +0200 Subject: [PATCH] minmal test --- config/nginx.conf | 0 docker-compose.yaml | 7 +++++++ src/index.html | 11 +++++++++++ 3 files changed, 18 insertions(+) create mode 100644 config/nginx.conf create mode 100644 docker-compose.yaml create mode 100644 src/index.html diff --git a/config/nginx.conf b/config/nginx.conf new file mode 100644 index 0000000..e69de29 diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..96ff517 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,7 @@ +services: + nginx: + image: nginx + ports: + - 8000:80 + volumes: + - ./src:/usr/share/nginx/html \ No newline at end of file diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..9354610 --- /dev/null +++ b/src/index.html @@ -0,0 +1,11 @@ + + + + + + Old Rabbit Town + + +

Hello World

+ + \ No newline at end of file