Files
redirect/templates/default.conf.template
vincent 8022bd5834 Initial commit
Drone CI steps, Dockerfile for ENV arguments and README.md
2026-08-01 14:17:37 +02:00

17 lines
354 B
Plaintext

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};
}
}