Builds & features
Fluxheimはfeature setsつきでコンパイルされます。deploymentに必要なものを含む最小buildを選んでください。
一般的なビルド
| 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 | focused upstream balancingとhealth checks。 |
| php | WordPressなどの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 | 追加されるもの |
|---|---|
web | static file servingとlocal web routes。 |
proxy | Reverse proxy routes and upstream handling. |
cache | Shared cache policy, memory and disk tiers, purge, and cache tooling. |
php-fpm | FastCGI bridgeとoptional managed PHP-FPM supervision。 |
metrics | Prometheus 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.