Builds & Funkcjas
Fluxheim kompiluje się z zestawami features. Wybierz najmniejszy build, który zawiera to, czego wymaga deployment.
Typowe buildy
| Build | Użyj do |
|---|---|
| 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 | Skupione upstream balancing i health checks. |
| php | Statyczny web plus aplikacje PHP-FPM, takie jak WordPress. |
Przykłady profili
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
Rodziny features
| Rodzina | Co dodaje |
|---|---|
web | Static file serving i lokalne web routes. |
proxy | Reverse proxy routes and upstream handling. |
cache | Shared cache policy, memory and disk tiers, purge, and cache tooling. |
php-fpm | FastCGI bridge i opcjonalny managed PHP-FPM supervision. |
metrics | Metryki Prometheus and optional OTLP metrics export. |
Rzeczy, których nie można łączyć
- Wybierz dokładnie jeden backend TLS.
- Privacy builds do not include cache, metrics, tracing, or Eksport OTLP.
- Skupione edge images celowo pomijają moduły spoza swojego zadania.
- Uruchom the feature validator before packaging custom feature strings.