Fluxheim/Documentos/Builds & Funcións

Builds & Funcións

Fluxheim se compila con conjuntos de features. Elige el build más pequeño que contenga lo que requiere tu despliegue.

Builds comunes

BuildÚsalo 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-balancerBalanceo upstream enfocado y health checks.
phpWeb estática más aplicaciones PHP-FPM como WordPress.

Ejemplos 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

Familias de features

FamiliaQué añade
webStatic file serving y local web routes.
proxyReverse proxy routes and upstream handling.
cacheShared cache policy, memory and disk tiers, purge, and cache tooling.
php-fpmPuente FastCGI y supervisión PHP-FPM gestionada opcional.
metricsMétricas Prometheus and optional OTLP metrics export.

Cosas que no pueden ir juntas

  • Elige exactamente un backend TLS.
  • Privacy builds do not include cache, metrics, tracing, or Export OTLP.
  • Las imágenes edge enfocadas omiten intencionadamente módulos fuera de su tarea.
  • Ejecutar the feature validator before packaging custom feature strings.
Español