Builds & Funkcijas
Fluxheim se kompilira s feature setovima. Odaberi najmanji build koji sadrži ono što deployment treba.
Uobičajeni buildovi
| Build | Koristi za |
|---|---|
| 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 | Fokusirano upstream balancing i health check. |
| php | Statički web plus PHP-FPM aplikacije poput WordPressa. |
Primjeri profila
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
Funkcija obitelji
| Obitelj | Što dodaje |
|---|---|
web | Static file serving i lokalne web route. |
proxy | Reverse proxy routes and upstream handling. |
cache | Shared cache policy, memory and disk tiers, purge, and cache tooling. |
php-fpm | FastCGI bridge i opcijska managed PHP-FPM supervision. |
metrics | Prometheus metrike and optional OTLP metrics export. |
Stvari koje ne mogu zajedno
- Odaberi točno jedan TLS backend.
- Privacy builds do not include cache, metrics, tracing, or OTLP izvoz.
- Fokusirane edge image namjerno izostavljaju module izvan svoje zadaće.
- Pokreni the feature validator before packaging custom feature strings.