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 |
|---|---|
| full | General production server with web, proxy, cache, TLS, ACME, PHP-FPM, metrics, and tracing. |
| proxy | Reverse proxy without local static hosting or cache. |
| cache | Cache edge in front of another origin. |
| load-balancer | Balanceo upstream enfocado y health checks. |
| php | Web 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
| Familia | Qué añade |
|---|---|
web | Static file serving y local web routes. |
proxy | Reverse proxy routes and upstream handling. |
cache | Shared cache policy, memory and disk tiers, purge, and cache tooling. |
php-fpm | Puente FastCGI y supervisión PHP-FPM gestionada opcional. |
metrics | Mé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.