Fluxheim/ドキュメント/Builds & features

Builds & features

Fluxheimはfeature setsつきでコンパイルされます。deploymentに必要なものを含む最小buildを選んでください。

一般的なビルド

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-balancerfocused upstream balancingとhealth checks。
phpWordPressなどのstatic web plus PHP-FPM applications。

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 families

family追加されるもの
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は必ず1つだけ選びます。
  • Privacy builds do not include cache, metrics, tracing, or OTLP export設定設定.
  • Focused edge imagesは目的外のmoduleを意図的に省きます。
  • 実行 the feature validator before packaging custom feature strings.
日本語