Builds & Funktions
Fluxheim kompileras med feature-set. Välj det minsta bygget som innehåller det din driftsättning behöver.
Vanliga byggen
| Build | Använd det 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 | Fokuserad upstream-balansering och health checks. |
| php | Statisk webb plus PHP-FPM-applikationer som WordPress. |
Profilexempel
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
Funktionsfamiljer
| Familj | Vad det lagger till |
|---|---|
web | Servering av statiska filer och lokala webbrutter. |
proxy | Reverse proxy routes and upstream handling. |
cache | Shared cache policy, memory and disk tiers, purge, and cache tooling. |
php-fpm | FastCGI-brygga och valfri hanterad PHP-FPM-overvakning. |
metrics | Prometheus-mätvärden and optional OTLP metrics export. |
Saker som inte kan kombineras
- Välj exakt en TLS-backend.
- Privacy builds do not include cache, metrics, tracing, or OTLP-export.
- Fokuserade edge-images utelämnar avsiktligt moduler utanför sin uppgift.
- Kör the feature validator before packaging custom feature strings.