Fluxheim/Dokumentace/Builds & Funkces

Builds & Funkces

Fluxheim se kompiluje se sadami feature. Vyber nejmenší build, který obsahuje to, co deployment potřebuje.

Běžné buildy

BuildPoužij pro
fullGeneral production server with web, proxy, cache, TLS, ACME, PHP-FPM, metrics, and tracing.
proxyReverse proxy without local static hosting or cache.
cacheCache edge in front of another origin.
load-balancerZaměřené upstream balancing a health check.
phpStatický 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

RodinaCo přidává
webStatic file serving a lokální web route.
proxyReverse proxy routes and upstream handling.
cacheShared cache policy, memory and disk tiers, purge, and cache tooling.
php-fpmFastCGI bridge a volitelná managed PHP-FPM supervision.
metricsPrometheus 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.
Čeština