Fluxheim/문서/Builds & features

Builds & features

Fluxheim은 feature set으로 컴파일됩니다. 배포에 필요한 가장 작은 빌드를 선택하세요.

일반 빌드

Build사용 대상
fullGeneral production server with web, proxy, cache, TLS, ACME, PHP-FPM, metrics, and tracing.
proxyReverse proxy without local static hosting or cache.
cacheCache edge in front of another origin.
load-balancer집중된 upstream balancing 및 health check.
phpWordPress 같은 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추가하는 것
webstatic file serving 및 local web route.
proxyReverse proxy routes and upstream handling.
cacheShared cache policy, memory and disk tiers, purge, and cache tooling.
php-fpmFastCGI bridge 및 선택적 managed PHP-FPM supervision.
metricsPrometheus 메트릭 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.
한국어