Before the pingap version is stable, no pull requests will be accepted. If you have any questions, please create a new issue first.
Pingap is a high-performance reverse proxy powered by the Cloudflare Pingora . It simplifies operational management by enabling dynamic, zero-downtime configuration hot-reloading through concise TOML files and an intuitive web admin interface.
Its core strength lies in a powerful plugin system, offering over twenty out-of-the-box features for Authentication (JWT, Key Auth), Security (CSRF, IP/Referer/UA Restrictions), Traffic Control (Rate Limiting, Caching), Content Modification (Redirects, Content Substitution), and Observability (Request ID). This makes Pingap not just a proxy, but a flexible and extensible application gateway, engineered to effortlessly handle complex scenarios from API protection to modern web application deployments.
中文说明 | Documentation · 中文文档 | Examples | Plugins | Crates
flowchart LR
internet("Internet") -- request --> pingap["Pingap"]
pingap -- proxy:pingap.io/api/* --> apiUpstream["10.1.1.1,10.1.1.2"]
pingap -- proxy:cdn.pingap.io --> cdnUpstream["10.1.2.1,10.1.2.2"]
pingap -- proxy:/* --> upstream["10.1.3.1,10.1.3.2"]
-
🚀 High Performance & Reliability
- Built with Rust for memory safety and top-tier performance.
- Powered by Cloudflare Pingora, a battle-tested asynchronous networking library.
- Supports HTTP/1.1, HTTP/2, and gRPC-web proxying.
-
🔧 Dynamic & Easy to Use
- Zero-downtime configuration changes with hot-reloading.
- Simple, human-readable TOML configuration files.
- Full-featured Web UI for intuitive, real-time management.
- Supports both file and etcd as configuration backends.
- Supports configuration history record, can restore to the history version with one click.
-
🧩 Powerful Extensibility
- A rich plugin system to handle common gateway tasks.
- Advanced routing with host, path, and regex matching.
- Built-in service discovery via static lists, DNS, or Docker labels.
- Automated HTTPS with Let's Encrypt (supporting both HTTP-01 and DNS-01 challenges).
-
📊 Modern Observability
- Native Prometheus metrics for monitoring (pull & push modes).
- Integrated OpenTelemetry support for distributed tracing.
- Highly customizable access logs with over 30 variables.
- Detailed performance metrics, including upstream connect time, processing time, and more.
The easiest way to get started with Pingap is by using Docker Compose.
- Create a
docker-compose.ymlfile:
# docker-compose.yml
version: '3.8'
services:
pingap:
image: vicanso/pingap:latest # For production, use a specific version like vicanso/pingap:0.12.1-full
container_name: pingap-instance
restart: always
ports:
- "80:80"
- "443:443"
volumes:
# Mount a local directory to persist all configurations and data
- ./pingap_data:/opt/pingap
environment:
# Configure using environment variables
- PINGAP_CONF=/opt/pingap/conf
- PINGAP_ADMIN_ADDR=0.0.0.0:80/pingap
- PINGAP_ADMIN_USER=pingap
- PINGAP_ADMIN_PASSWORD=<YourSecurePassword> # Change this!
command:
# Start pingap and enable hot-reloading
- pingap
- --autoreload- Create a data directory and run:
mkdir pingap_data
docker-compose up -d- Access the Admin UI:
Your Pingap instance is now running! You can access the web admin interface at http://localhost/pingap with the credentials you set.
For Linux and macOS, you can install the latest pre-built binary to /usr/local/bin/pingap with one command:
curl -sSL https://github.com/ghraw/vicanso/pingap/main/install.sh | shOptional environment variables:
PINGAP_FULL=1— install the-fullbuild (all optional features enabled)PINGAP_LIBC=gnu— on Linux, use the glibc build instead of the default musl static buildPINGAP_TLS=rustls— on Linux, install the-rustls-fullbuild (rustls TLS backend, all optional features, no OpenSSL); see TLS backend
# Full-featured build
curl -sSL https://github.com/ghraw/vicanso/pingap/main/install.sh | PINGAP_FULL=1 shSupported targets: Linux x86_64/arm64, Darwin x86_64/arm64. See the releases page for all available assets.
For more detailed instructions, including running from a binary, check out our Documentation.
A single command is enough to serve a domain over https and forward it to a backend:
# certificate requested from let's encrypt
pingap --domain=pingap.io --upstream=192.168.1.1:3000
# or bring your own certificate
pingap --domain=pingap.io --upstream=192.168.1.1:3000 --cert=/etc/ssl/pingap.ioWithout --cert, Pingap asks Let's Encrypt for a certificate through the
HTTP-01 challenge, so pingap.io must resolve to this host and port 80 must be
reachable from the internet. The issued certificate is kept in
~/.pingap/acme/<domains>.toml and reused on restart — issuing is rate limited,
so do not delete it. Everything else still comes from the command line: changing
--upstream takes effect on the next start without touching the certificate.
--cert accepts the certificate itself or the directory holding it — the common
fullchain.pem / privkey.pem, cert.pem / key.pem and tls.crt / tls.key
layouts are detected automatically, use --key for anything else. The listener
defaults to 0.0.0.0:443 when there is a certificate and 0.0.0.0:80 when there
is neither a certificate nor a domain, and --addr overrides it. --upstream
takes a comma separated list of backends, --domain a comma separated list of
hosts (omit it to serve every host over plain http). Requests for a host that
is not listed are answered with 404.
The configuration is generated on every start, so it cannot be edited through
the admin UI: for anything beyond a single server use --conf, which cannot be
combined with these flags.
Pingap is designed to adapt to configuration changes without downtime.
Hot Reload (--autoreload): For most changes—like updating upstreams, locations, or plugins—Pingap applies the new configuration within 10 seconds without a restart. This is the recommended mode for containerized environments.
Graceful Restart (-a or --autorestart): For fundamental changes (like modifying server listen ports), this mode performs a full, zero-downtime restart, ensuring no requests are dropped.
The hand-over is readiness-driven rather than timed: the replacement is started with -d -u, reports back over a unix socket next to the upgrade socket the moment it is ready to take over the listeners, and only then does the running process send itself SIGQUIT. If the replacement exits, its daemon dies, or basic.restart_ready_timeout (default 1m) passes first, the restart is abandoned and the running process keeps serving.
make devIf you need a web admin, you should install nodejs and build web asssets.
# generate admin web asset
cd web
npm i
cd ..
make build-webThe default build terminates TLS with OpenSSL, compiled from source by the openssl crate. To build with rustls instead, which drops the OpenSSL source build (a C compiler is still needed: rustls' crypto providers, ring and aws-lc-rs, contain C and assembly):
cargo build --release --no-default-features --features tls-rustls
# with the optional features as well
cargo build --release --no-default-features --features tls-rustls,fullThe rustls build ignores the per-server tls_min_version, tls_max_version, tls_cipher_list and tls_ciphersuites settings and logs a warning when they are set: it always offers TLS 1.2 and 1.3 with rustls' default cipher suites. Everything else, including dynamic SNI certificates, self-signed CA issuance, ACME and the upstream ca option, behaves the same. One difference to know about when verifying upstreams: rustls (webpki) rejects a server certificate that carries CA:TRUE, which OpenSSL accepts, so a backend using a quick openssl req -x509 self-signed certificate needs a proper leaf signed by a CA (or a self-signed leaf without the CA flag) before the upstream ca option can trust it. The startup log reports which backend a binary was built with.
server "test" {
addr = "127.0.0.1:6118"
location "github-api" {
path = "/api"
proxy_set_headers = ["Host:github.com/ghapi"]
rewrite = "^/api/(?<path>.+)$ /$1"
upstream "api" {
addrs = ["github.com/ghapi:443"]
discovery = "dns"
sni = "github.com/ghapi"
}
}
location "static" {
plugin "staticServe" {
category = "directory"
path = "~/Downloads"
step = "request"
}
}
}[upstreams.api]
addrs = ["github.com/ghapi:443"]
discovery = "dns"
sni = "github.com/ghapi"
[plugins.staticServe]
category = "directory"
path = "~/Downloads"
step = "request"
[locations.github-api]
upstream = "api"
path = "/api"
proxy_set_headers = ["Host:github.com/ghapi"]
rewrite = "^/api/(?<path>.+)$ /$1"
[locations.static]
plugins = ["staticServe"]
[servers.test]
addr = "127.0.0.1:6118"
locations = ["github-api", "static"]You can find the relevant instructions here: https://pingap.io/crates/config.
graph TD;
server["HTTP Server"];
locationA["Location A"];
locationB["Location B"];
locationPluginListA["Proxy Plugin List A"];
locationPluginListB["Proxy Plugin List B"];
upstreamA1["Upstream A1"];
upstreamA2["Upstream A2"];
upstreamB1["Upstream B1"];
upstreamB2["Upstream B2"];
locationResponsePluginListA["Response Plugin List A"];
locationResponsePluginListB["Response Plugin List B"];
start("New Request") --> server
server -- "host:HostA, Path:/api/*" --> locationA
server -- "Path:/rest/*"--> locationB
locationA -- "Exec Proxy Plugins" --> locationPluginListA
locationB -- "Exec Proxy Plugins" --> locationPluginListB
locationPluginListA -- "proxy pass: 10.0.0.1:8001" --> upstreamA1
locationPluginListA -- "proxy pass: 10.0.0.2:8001" --> upstreamA2
locationPluginListA -- "done" --> response
locationPluginListB -- "proxy pass: 10.0.0.1:8002" --> upstreamB1
locationPluginListB -- "proxy pass: 10.0.0.2:8002" --> upstreamB2
locationPluginListB -- "done" --> response
upstreamA1 -- "Exec Response Plugins" --> locationResponsePluginListA
upstreamA2 -- "Exec Response Plugins" --> locationResponsePluginListA
upstreamB1 -- "Exec Response Plugins" --> locationResponsePluginListB
upstreamB2 -- "Exec Response Plugins" --> locationResponsePluginListB
locationResponsePluginListA --> response
locationResponsePluginListB --> response
response["HTTP Response"] --> stop("Logging");
CPU: M4 Pro, Thread: 1
wrk 'http://127.0.0.1:6118/ping' --latency
Running 10s test @ http://127.0.0.1:6118/ping
2 threads and 10 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 66.41us 23.67us 1.11ms 76.54%
Req/Sec 73.99k 2.88k 79.77k 68.81%
Latency Distribution
50% 67.00us
75% 80.00us
90% 91.00us
99% 116.00us
1487330 requests in 10.10s, 194.32MB read
Requests/sec: 147260.15
Transfer/sec: 19.24MBOur current MSRV is 1.96
This project is Licensed under Apache License, Version 2.0.
