Fluxheim/Документация/Builds & Feature-функция-функцияs

Builds & Feature-функция-функцияs

Fluxheim компилируется с feature sets. Выберите минимальную сборку, в которой есть нужное вашему deployment.

Типовые сборки

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 checks.
phpStatic web плюс PHP-FPM applications, например WordPress.

Примеры profiles

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

Семейства features

СемействоЧто добавляет
webStatic file serving и local web routes.
proxyReverse proxy routes and upstream handling.
cacheShared cache policy, memory and disk tiers, purge, and cache tooling.
php-fpmFastCGI bridge и optional managed PHP-FPM supervision.
metricsPrometheus metrics endpoint endpoint and optional OTLP metrics export.

Что нельзя совмещать

  • Выберите ровно один TLS backend.
  • Privacy builds do not include cache, metrics, tracing, or OTLP export поток поток.
  • Focused edge images намеренно исключают модули вне своей задачи.
  • Запуск the feature validator before packaging custom feature strings.
Русский