Initial commit

Drone CI steps, Dockerfile for ENV arguments and README.md
This commit is contained in:
2026-08-01 14:17:37 +02:00
commit 8022bd5834
8 changed files with 277 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
server {
listen ${LISTEN_PORT};
server_name _;
# Health check endpoint for container orchestrator probes
location = /healthz {
access_log off;
default_type text/plain;
return 200 "OK\n";
}
# Redirect all other incoming traffic
location / {
return ${REDIRECT_CODE} ${REDIRECT_TARGET};
}
}