Builds & features
Fluxheim은 feature set으로 컴파일됩니다. 배포에 필요한 가장 작은 빌드를 선택하세요.
일반 빌드
| Build | 사용 대상 |
|---|---|
| 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 | 집중된 upstream balancing 및 health check. |
| php | WordPress 같은 static web + PHP-FPM application. |
profile 예제
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
feature family
| family | 추가하는 것 |
|---|---|
web | static file serving 및 local 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 및 선택적 managed PHP-FPM supervision. |
metrics | Prometheus 메트릭 and optional OTLP metrics export. |
함께 사용할 수 없는 것
- TLS backend는 정확히 하나만 선택하세요.
- Privacy builds do not include cache, metrics, tracing, or OTLP export.
- focused edge image는 의도적으로 해당 작업 밖의 module을 제외합니다.
- 실행 the feature validator before packaging custom feature strings.