Fluxheim/Dokumentacija/Builds & Funkcijas

Builds & Funkcijas

Fluxheim se kompilira s feature setovima. Odaberi najmanji build koji sadrži ono što deployment treba.

Uobičajeni buildovi

BuildKoristi za
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-balancerFokusirano upstream balancing i health check.
phpStatički web plus PHP-FPM aplikacije poput WordPressa.

Primjeri profila

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

Funkcija obitelji

ObiteljŠto dodaje
webStatic file serving i lokalne web route.
proxyReverse proxy routes and upstream handling.
cacheShared cache policy, memory and disk tiers, purge, and cache tooling.
php-fpmFastCGI bridge i opcijska managed PHP-FPM supervision.
metricsPrometheus metrike and optional OTLP metrics export.

Stvari koje ne mogu zajedno

  • Odaberi točno jedan TLS backend.
  • Privacy builds do not include cache, metrics, tracing, or OTLP izvoz.
  • Fokusirane edge image namjerno izostavljaju module izvan svoje zadaće.
  • Pokreni the feature validator before packaging custom feature strings.
Hrvatski