eggrd 0.1.5

A drop-in Rust edge proxy that gives any app a secure front door: auth, rate limiting, and hardened response headers, with zero changes to the upstream app.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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";
    }
}