Fluxheim/Documentos/Builds & Funcionalidades

Builds & Funcionalidades

O Fluxheim é compilado com conjuntos de features. Escolha o build mais pequeno que contenha o que o deployment precisa.

Builds comuns

BuildUse para
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-balancerBalanceamento upstream focado e health checks.
phpWeb estática mais aplicações PHP-FPM como WordPress.

Exemplos de perfil

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

Famílias de features

FamíliaO que adiciona
webStatic file serving e local web routes.
proxyReverse proxy routes and upstream handling.
cacheShared cache policy, memory and disk tiers, purge, and cache tooling.
php-fpmPonte FastCGI e supervisão PHP-FPM gerida opcional.
metricsMétricas Prometheus and optional OTLP metrics export.

Coisas que não podem ir juntas

  • Escolha exatamente um backend TLS.
  • Privacy builds do not include cache, metrics, tracing, or Export OTLP.
  • Imagens edge focadas omitem intencionalmente módulos fora da sua tarefa.
  • Executar the feature validator before packaging custom feature strings.
Português