Builds & Funktions
Fluxheim kompileres med feature-sæt. Vælg det mindste build, der indeholder det, din deployment kræver.
Almindelige builds
| Build | Brug det til |
|---|---|
| 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 | Fokuseret upstream-balancering og health checks. |
| php | Statisk web plus PHP-FPM-applikationer som WordPress. |
Profileksempler
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
Funktion-familier
| Familie | Hvad det tilføjer |
|---|---|
web | Static file serving og local web routes. |
proxy | Reverse proxy routes and upstream handling. |
cache | Shared cache policy, memory and disk tiers, purge, and cache tooling. |
php-fpm | FastCGI-bro og valgfri managed PHP-FPM-supervision. |
metrics | Prometheus-metrics and optional OTLP metrics export. |
Ting der ikke kan kombineres
- Vælg præcis én TLS-backend.
- Privacy builds do not include cache, metrics, tracing, or OTLP-export.
- Fokuserede edge-images udelader bevidst moduler uden for deres opgave.
- Kør the feature validator before packaging custom feature strings.