Builds & Features
Fluxheim wird mit Feature-Sets kompiliert. Wähle den kleinsten Build, der enthält, was dein Deployment braucht.
Häufige Builds
| Build | Nutze es für |
|---|---|
| full | General production server with web, proxy, cache, TLS, ACME, PHP-FPM, metrics, and tracing. |
| proxy | Reverse proxy without local static hosting or cache. |
| cache | Cache edge in front of another origin. |
| load-balancer | Fokussiertes Upstream-Balancing und Health Checks. |
| php | Statisches Web plus PHP-FPM-Anwendungen wie WordPress. |
Profilbeispiele
cargo build --release --no-default-features --features profile-full,acme-client,metrics,metrics-otlp,otel-tracing,otel-otlp
cargo build --release --no-default-features --features profile-cache-edge,acme-client
cargo build --release --no-default-features --features profile-proxy-edge,acme-client
cargo build --release --no-default-features --features profile-web-server,php-fpm,acme-client
cargo build --release --no-default-features --features profile-load-balancer-edge,acme-client
Feature-Familien
| Familie | Was es hinzufugt |
|---|---|
web | Statisches Datei-Serving und lokale Web-Routen. |
proxy | Reverse proxy routes and upstream handling. |
cache | Shared cache policy, memory and disk tiers, purge, and cache tooling. |
php-fpm | FastCGI-Bridge und optionale verwaltete PHP-FPM-Uberwachung. |
metrics | Prometheus-Metriken and optional OTLP metrics export. |
Was nicht zusammenpasst
- Wähle genau ein TLS-Backend.
- Privacy builds do not include cache, metrics, tracing, or OTLP-Export.
- Fokussierte Edge-Images lassen Module außerhalb ihrer Aufgabe bewusst weg.
- Ausführen the feature validator before packaging custom feature strings.