Latest版版 Stable — v1.6.30

Download Fluxheim

Pre-built Linux binaries for x86_64 and ARM64, plus macOS developer builds. 2026年6月23日リリース.

full 推奨

full Production Build版

すべてのstable production modules: proxy、web、cache、compression、load balancing、raw TCP stream proxying、TLS (rustls)、PHP-FPM、ACME client、GeoIP/Geo-Context、security hardening、metrics、OpenTelemetry。

Static serving + reverse proxy + PHP-FPM構成構成
Cache backends (memory、disk、tiered)
gzip、zstd、Brotli compression
TLS + managed ACME renewal構成構成
local GeoIP country/ASN context
hardened TCP stream proxying
Prometheus + OpenTelemetry対応対応
~10.3 MB binary
Load Balancer new

Load Balancer Edge版版

cache、static web、PHP、GeoIP、stream proxying、traffic mirroringを含まないfocused HTTP/TCP load-balancer build。

Advanced pool selection
drain、disable、force-down
hardened LB core
TLS + managed ACME renewal構成構成
PHP managed PHP-FPM

PHP Application Build版版

Static web + reverse proxy + PHP-FPM FastCGI bridge機能機能。WordPressやPHP front-controller appsに最適です。cache moduleはcompileされません。

PHP-FPM FastCGI bridge機能機能
同じrootからのstatic asset serving
TLS + managed ACME renewal構成構成
~8.9 MB binary
キャッシュ

Cache Edge Build版版

local static web servingを含まないfocused cache edge。proxy、cache、compression、TLS、ACMEを含みます。CDN-style deploymentsに適しています。

reverse proxy + cache
cache-safe compression controls
TLS + managed ACME renewal構成構成
static web moduleはcompileされません
~6.8 MB binary
プロキシ

Proxy Edge Build版版

cache、static web、dedicated load-balancer moduleを含まないfocused reverse proxy。TLS、ACME、compression、upstream resilienceを備えたpure reverse-proxy deployments向けです。

reverse proxyのみ
ACL、rate limits、retries、health checks
TLS + managed ACME renewal構成構成
cacheまたはweb moduleはcompileされません
~5.8 MB binary

Platform Downloads

Production Linux builds plus Level 1 macOS developer tarballs.

macOSはdeveloper testing専用です
ビルド Linux x86_64 Linux ARM64 macOS dev
full x86_64-linux aarch64-linux Apple Silicon
PHP x86_64-linux aarch64-linux -
Load Balancer x86_64-linux aarch64-linux -
キャッシュ x86_64-linux aarch64-linux -
プロキシ x86_64-linux aarch64-linux -
Config testerツール x86_64-linux aarch64-linux -

インストール

bash — tarball installation手順手順
# 1. full Linux build tarballをダウンロード
# ARM64 serversではx86_64-linuxではなくaarch64-linuxを使います。
curl -L https://github.com/valkyoth/fluxheim/releases/download/v1.6.30/fluxheim-1.6.30-full-x86_64-linux.tar.gz \
  -o fluxheim-1.6.30.tar.gz

# 2. 検証して展開
tar xzf fluxheim-1.6.30.tar.gz

# 3. binaryとhelper toolsをsystem pathへ移動
sudo mv fluxheim /usr/local/bin/
sudo mv fluxheim-acme /usr/local/bin/            # ACME companion tool tool
sudo mv fluxheim-config-tester /usr/local/bin/   # config validator tool

# 4. config directoryを作成してconfigを追加
sudo mkdir -p /etc/fluxheim /srv/fluxheim
sudo cp packaging/default/fluxheim.toml /etc/fluxheim/fluxheim.toml

# 5. configを検証
fluxheim --check-config --config /etc/fluxheim/fluxheim.toml

# 6. 直接実行(またはservice setupはSystemd tabを参照)
sudo fluxheim --config /etc/fluxheim/fluxheim.toml
bash — rootless Podman実行実行
# GHCR imagesをpull(full、load-balancer、cache、proxy、PHP variants)
podman pull ghcr.io/valkyoth/fluxheim:v1.6.30         # full image image
podman pull ghcr.io/valkyoth/fluxheim:v1.6.30-load-balancer # load balancer image image
podman pull ghcr.io/valkyoth/fluxheim:v1.6.30-cache   # cache edge image image
podman pull ghcr.io/valkyoth/fluxheim:v1.6.30-proxy   # proxy edge image image
podman pull ghcr.io/valkyoth/fluxheim:v1.6.30-php     # managed PHP-FPM image image

# 同じbuild setはQuayでも利用可能
podman pull quay.io/valkyoth/fluxheim:v1.6.30
podman pull quay.io/valkyoth/fluxheim:v1.6.30-load-balancer
podman pull quay.io/valkyoth/fluxheim:v1.6.30-cache
podman pull quay.io/valkyoth/fluxheim:v1.6.30-proxy
podman pull quay.io/valkyoth/fluxheim:v1.6.30-php

# rootless実行 — internal ports 8080と8443
podman run -d \
  --name fluxheim \
  --restart unless-stopped \
  -p 8080:8080 \
  -p 8443:8443 \
  -v /srv/sites:/srv/sites:ro \
  -v /srv/fluxheim/certs:/etc/fluxheim/certs:rw \
  -v ./fluxheim.toml:/etc/fluxheim/fluxheim.toml:ro \
  ghcr.io/valkyoth/fluxheim:v1.6.30

# logsを確認
podman logs -f fluxheim
bash — systemd service設定設定
# tarballにはhardened systemd unitが含まれます
sudo cp packaging/systemd/fluxheim.service /etc/systemd/system/

# fluxheim system userを作成
sudo useradd -r -s /sbin/nologin -d /var/lib/fluxheim fluxheim

# directoriesを設定
sudo mkdir -p /etc/fluxheim /srv/fluxheim /var/log/fluxheim
sudo chown fluxheim:fluxheim /srv/fluxheim /var/log/fluxheim

# systemdをreloadしserviceをenable
sudo systemctl daemon-reload
sudo systemctl enable --now fluxheim

# statusを確認
sudo systemctl status fluxheim
sudo journalctl -u fluxheim -f

注: 同梱systemd unitは CAP_NET_BIND_SERVICE を使うため、Fluxheimはrootとして実行せずにports 80と443へbindできます。unit fileにはsecurity hardening optionsが含まれます。

bash — managed ACME certificate issuance手順手順
# Fluxheimにはguided certificate setup用のacme-initが含まれます
# Let's Encrypt issuer(HTTP-01)
sudo fluxheim acme-init letsencrypt

# Actalis issuer(free EAB-capable)
sudo fluxheim acme-init actalis

# companion tool fluxheim-acmeがrenewalを処理します:
# containerおよびexternal service-manager deployments
fluxheim-acme status
fluxheim-acme renew
fluxheim-acme reload
fluxheim.toml — ACME config例例
[[vhosts]]
name = "site"
hosts = ["example.com", "www.example.com"]

[vhosts.tls]
enabled = true

[vhosts.tls.acme]
enabled = true
# issuer = "letsencrypt" の例
完全なTLSとACME documentation →

System Requirements一覧一覧

Supported Platforms一覧一覧

  • Linux x86_64 (kernel 4.14+)
  • Linux ARM64 / aarch64
  • macOS developer binariesのみ

Container Images一覧一覧

すべてのrelease image buildsはGHCRおよび Quay.

  • Wolfi (minimal、hardened)
  • full、load-balancer、cache、proxy、PHP image profiles
  • Alpine Linux
  • SUSE Micro
  • Debian
  • GHCRとQuayで公開
バージョン 日付 Highlights概要概要 ダウンロード
v1.6.0 – v1.6.30 Latest版版 series範囲範囲
2026年6月 Native-runtime cutover line: Pingora-exit foundations、Fluxheim-owned HTTP/1 and HTTP/2 paths、native TLS/listener previews、route proxy/static-web parity、compression and error pages、forwarded-header policy、auth-request、traffic mirroring、rate limits、gRPC validation、pooled upstream HTTP/2、hardened runtime evidence。 すべてGitHubで
v1.5.0 - v1.5.23 2026年6月 Enterprise load-balancerとruntime-ownership line: focused load-balancer binaries/images、runtime member and weight controls、managed affinity cookies、stream and HTTP boundary work、active/protocol-aware health checks、service discovery、background task ownership、cache crate boundaries、UDP beta guardrails、origin-protection budgets、ARM/macOS assets、broad security hardening。 すべてGitHubで
v1.4.0 – v1.4.7 2026年5月 production proxy parity、より豊富なroute policy、traffic mirroring、dynamic upstream discovery、modular runtime/config split、Apple Silicon and Linux ARM64 release assets、GeoIP/Geo-Context、config-tester archives、hardened TCP stream proxyingを備えたProxy operations line すべてGitHubで
v1.3.0 – v1.3.7 2026年5月 PHP-FPM production line、managed php-fpm supervision、config testerとACME companion binaries、FIPS/ISO validation tracks、focused cache/proxy profiles、security hardening すべてGitHubで
v1.2.0 – v1.2.6 2026年5月 route-scoped cache policy、memory/disk/tiered backends、encrypted disk cache、peer fill、range caching、Prometheus、OpenTelemetry exportを備えたcache and observability baseline すべてGitHubで
v1.1.x 2026 TLS policy profiles、multi-certificate rustls SNI、managed ACME issuance and renewal、EAB-capable issuers、file-backed TLS secrets、renewal unitsを備えたcertificate operations line すべてGitHubで
v1.0.0 2026 vhost routing、route-level static/proxy/redirect actions、static file serving、reverse proxying、rustls TLS、admin control-plane、secure headers、systemd packaging、rootless containersを備えたgateway foundation GitHub
v0.5.0 pre-release stable 1.x gateway line前の最初のpublic pre-release milestone GitHub

参照 変更履歴 詳細なrelease notes。

日本語