initial module

This commit is contained in:
2026-05-07 22:57:00 +03:30
commit 1e5deb18b3
27 changed files with 5271 additions and 0 deletions

13
dockerized/run.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env sh
set -eu
IMAGE="${IMAGE:-ngx-http-monitoring-module:local}"
NAME="${NAME:-ngx-http-monitoring-module}"
PORT="${PORT:-8080}"
docker rm -f "$NAME" >/dev/null 2>&1 || true
docker run \
--name "$NAME" \
-p "$PORT:8080" \
"$IMAGE"