# Trivial backend for the monitoring demo: nginx answering every path with a small static 200,
# so EdgeGuard always has an upstream to proxy to (the metrics, not the backend, are the point).
server {
listen 80 default_server;
access_log off;
location / {
default_type text/plain;
return 200 "ok\n";
}
location = /healthz {
default_type text/plain;
return 200 "healthy\n";
}
}