Fluxheim/Documentatie/Builds & Functies

Builds & Functies

Fluxheim wordt gecompileerd met feature sets. Kies de kleinste build die bevat wat je deployment nodig heeft.

Veelgebruikte builds

BuildGebruik het voor
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-balancerGerichte upstream-balancing en health checks.
phpStatische web plus PHP-FPM-applicaties zoals WordPress.

Profielvoorbeelden

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

Functiefamilies

FamilieWat het toevoegt
webStatische bestandsservering en lokale webroutes.
proxyReverse proxy routes and upstream handling.
cacheShared cache policy, memory and disk tiers, purge, and cache tooling.
php-fpmFastCGI-bridge en optionele beheerde PHP-FPM-supervisie.
metricsPrometheus-metrics and optional OTLP metrics export.

Dingen die niet samengaan

  • Kies exact één TLS-backend.
  • Privacy builds do not include cache, metrics, tracing, or OTLP-export.
  • Gerichte edge-images laten bewust modules weg die buiten hun taak vallen.
  • Uitvoeren the feature validator before packaging custom feature strings.
Nederlands