Builds & Funkces
Fluxheim se kompiluje se sadami feature. Vyber nejmenší build, který obsahuje to, co deployment potřebuje.
Běžné buildy
| Build | Použij pro |
|---|---|
| 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 | Zaměřené upstream balancing a health check. |
| php | Statický web plus PHP-FPM aplikace jako WordPress. |
Příklady profilů
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
Rodiny feature
| Rodina | Co přidává |
|---|---|
web | Static file serving a lokální web route. |
proxy | Reverse proxy routes and upstream handling. |
cache | Shared cache policy, memory and disk tiers, purge, and cache tooling. |
php-fpm | FastCGI bridge a volitelná managed PHP-FPM supervision. |
metrics | Prometheus metriky and optional OTLP metrics export. |
Věci, které nemohou být spolu
- Vyber přesně jeden TLS backend.
- Privacy builds do not include cache, metrics, tracing, or OTLP export dat dat.
- Zaměřené edge image záměrně vynechávají moduly mimo svou roli.
- Spustit the feature validator before packaging custom feature strings.