A toy webserver with variable expansion based on connecting client

This commit is contained in:
2026-04-03 14:46:04 +02:00
commit 07d33913ca
9 changed files with 1180 additions and 0 deletions

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
services:
clab-webserver:
build: .
image: git.ipng.ch/ipng/clab-webserver:latest
ports:
- "80:80"
volumes:
- ./client-map.yaml:/app/client-map.yaml:ro
environment:
LISTEN: ":80"
CLIENT_MAP: /app/client-map.yaml
DOCROOT: /app/docroot
restart: unless-stopped