Builds & Funziones
Fluxheim viene compilato con set di feature. Scegli la build più piccola che contiene ciò che serve al deployment.
Build comuni
| Build | Usalo per |
|---|---|
| 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 | Bilanciamento upstream mirato e health check. |
| php | Web 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
| Famiglia | Cosa aggiunge |
|---|---|
web | Static file serving e route web locali. |
proxy | Reverse proxy routes and upstream handling. |
cache | Shared cache policy, memory and disk tiers, purge, and cache tooling. |
php-fpm | Bridge FastCGI e supervisione PHP-FPM gestita opzionale. |
metrics | Metriche 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.