Fluxheim/Dokumentation/Builds & Funktions

Builds & Funktions

Fluxheim kompileres med feature-sæt. Vælg det mindste build, der indeholder det, din deployment kræver.

Almindelige builds

BuildBrug det til
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-balancerFokuseret upstream-balancering og health checks.
phpStatisk 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

FamilieHvad det tilføjer
webStatic file serving og local web routes.
proxyReverse proxy routes and upstream handling.
cacheShared cache policy, memory and disk tiers, purge, and cache tooling.
php-fpmFastCGI-bro og valgfri managed PHP-FPM-supervision.
metricsPrometheus-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.
Dansk