Fluxheim/Documentazione/Builds & Funziones

Builds & Funziones

Fluxheim viene compilato con set di feature. Scegli la build più piccola che contiene ciò che serve al deployment.

Build comuni

BuildUsalo per
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-balancerBilanciamento upstream mirato e health check.
phpWeb statico più applicazioni PHP-FPM come WordPress.

Esempi di profilo

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

Famiglie feature

FamigliaCosa aggiunge
webStatic file serving e route web locali.
proxyReverse proxy routes and upstream handling.
cacheShared cache policy, memory and disk tiers, purge, and cache tooling.
php-fpmBridge FastCGI e supervisione PHP-FPM gestita opzionale.
metricsMetriche Prometheus and optional OTLP metrics export.

Cose che non possono stare insieme

  • Scegli esattamente un backend TLS.
  • Privacy builds do not include cache, metrics, tracing, or Export OTLP.
  • Le image edge mirate omettono intenzionalmente i moduli fuori dal loro compito.
  • Esegui the feature validator before packaging custom feature strings.
Italiano