Legújabb Stable — v1.6.30

Download Fluxheim

Pre-built Linux binaries for x86_64 and ARM64, plus macOS developer builds. Kiadva: 2026. június 23..

Full Ajánlott

Teljes production build

Minden stabil production modul: proxy, web, cache, compression, load balancing, raw TCP stream proxying, TLS (rustls), PHP-FPM, ACME client, GeoIP/Geo-Context, security hardening, metrics és OpenTelemetry.

Static serving + reverse proxy + PHP-FPM
Cache backendek (memory, disk, tiered)
gzip, zstd és Brotli tömörítés
TLS + kezelt ACME megújítás
Helyi GeoIP ország/ASN context
Megerősített TCP stream proxying
Prometheus + OpenTelemetry
~10.3 MB binary
Load Balancer Új

Load Balancer Edge

Célzott HTTP/TCP load-balancer build cache, static web, PHP, GeoIP, stream proxying vagy traffic mirroring nélkül.

Advanced pool selection
Drain, disable, force-down
Megerősített LB core
TLS + kezelt ACME megújítás
PHP Kezelt PHP-FPM

PHP Application Build

Static web + reverse proxy + PHP-FPM FastCGI híd. Ideális WordPresshez és PHP front-controller appokhoz. Cache modul nincs lefordítva.

PHP-FPM FastCGI híd
Static asset serving ugyanabból a rootból
TLS + kezelt ACME megújítás
~8.9 MB binary
Cache

Cache Edge Build

Célzott cache edge helyi static web serving nélkül. Tartalmaz proxy, cache, compression, TLS és ACME funkciókat. CDN-szerű telepítésekhez ideális.

Reverse proxy + cache
Cache-biztos compression control
TLS + kezelt ACME megújítás
Nincs static web modul lefordítva
~6.8 MB binary
Proxy

Proxy Edge Build

Célzott reverse proxy cache, static web vagy dedikált load-balancer modul nélkül. Tiszta reverse-proxy telepítésekhez tervezve TLS-sel, ACME-val, compressionnel és upstream resilience-szel.

Csak reverse proxy
ACL-ek, rate limitek, retryk, health checkek
TLS + kezelt ACME megújítás
Nincs cache vagy web modul lefordítva
~5.8 MB binary

Platform Downloads

Production Linux builds plus Level 1 macOS developer tarballs.

A macOS csak fejlesztői tesztelésre való
Build 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 -
Cache x86_64-linux aarch64-linux -
Proxy x86_64-linux aarch64-linux -
Config tester x86_64-linux aarch64-linux -

Telepítés

bash — tarball telepítés
# 1. Full Linux build tarball letöltése
# ARM64 servereken x86_64-linux helyett aarch64-linux használata.
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. Ellenőrzés és kibontás
tar xzf fluxheim-1.6.30.tar.gz

# 3. Bináris és helper toolok mozgatása a system pathba
sudo mv fluxheim /usr/local/bin/
sudo mv fluxheim-acme /usr/local/bin/            # ACME companion
sudo mv fluxheim-config-tester /usr/local/bin/   # Config validator

# 4. Config directory létrehozása és config hozzáadása
sudo mkdir -p /etc/fluxheim /srv/fluxheim
sudo cp packaging/default/fluxheim.toml /etc/fluxheim/fluxheim.toml

# 5. Config validálása
fluxheim --check-config --config /etc/fluxheim/fluxheim.toml

# 6. Közvetlen futtatás (vagy service setuphoz lásd a Systemd tabot)
sudo fluxheim --config /etc/fluxheim/fluxheim.toml
bash — rootless Podman
# GHCR image-ek pullja (full, load-balancer, cache, proxy és PHP variánsok)
podman pull ghcr.io/valkyoth/fluxheim:v1.6.30         # full
podman pull ghcr.io/valkyoth/fluxheim:v1.6.30-load-balancer # load balancer
podman pull ghcr.io/valkyoth/fluxheim:v1.6.30-cache   # cache edge
podman pull ghcr.io/valkyoth/fluxheim:v1.6.30-proxy   # proxy edge
podman pull ghcr.io/valkyoth/fluxheim:v1.6.30-php     # managed PHP-FPM

# Ugyanez a build set elérhető Quay-en is
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 futtatás — belső portok 8080 és 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

# Logok ellenőrzése
podman logs -f fluxheim
bash — systemd szolgáltatás
# A tarball megerősített systemd unitot tartalmaz
sudo cp packaging/systemd/fluxheim.service /etc/systemd/system/

# fluxheim system user létrehozása
sudo useradd -r -s /sbin/nologin -d /var/lib/fluxheim fluxheim

# Directoryk beállítása
sudo mkdir -p /etc/fluxheim /srv/fluxheim /var/log/fluxheim
sudo chown fluxheim:fluxheim /srv/fluxheim /var/log/fluxheim

# systemd reload és service enable
sudo systemctl daemon-reload
sudo systemctl enable --now fluxheim

# Status ellenőrzése
sudo systemctl status fluxheim
sudo journalctl -u fluxheim -f

Megjegyzés: A csomagolt systemd unit ezt használja: CAP_NET_BIND_SERVICE így a Fluxheim rootként futás nélkül tud a 80-as és 443-as portokra bindolni. A unit file security hardening opciókat tartalmaz.

bash — kezelt ACME tanúsítványkiadás
# A Fluxheim acme-initet tartalmaz guided certificate setuphoz
# Let's Encrypt (HTTP-01)
sudo fluxheim acme-init letsencrypt

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

# A fluxheim-acme companion tool renewal kezelést végez ehhez:
# container és external service-manager deploymentek
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"
Teljes TLS és ACME dokumentáció →

Rendszerkövetelmények

Támogatott platformok

  • Linux x86_64 (kernel 4.14+)
  • Linux ARM64 / aarch64
  • Csak macOS fejlesztői binárisok

Konténer image-ek

Minden release image build GHCR-en és Quay.

  • Wolfi (minimális, megerősített)
  • Full, load-balancer, cache, proxy és PHP image profilok
  • Alpine Linux
  • SUSE Micro
  • Debian
  • GHCR-en és Quay-en közzétéve
Verzió Dátum Kiemelések Letöltések
v1.6.0 – v1.6.30 Legújabb sorozat
2026. június Native-runtime cutover vonal: Pingora-exit alapok, Fluxheim-owned HTTP/1 és HTTP/2 útvonalak, native TLS/listener előnézetek, route proxy/static-web paritás, compression és error pages, forwarded-header policy, auth-request, traffic mirroring, rate limits, gRPC validation, pooled upstream HTTP/2 és megerősített runtime bizonyíték. Minden GitHubon
v1.5.0 - v1.5.23 2026. június Enterprise load-balancer és runtime-ownership line: focused load-balancer binárisok/image-ek, runtime member és weight controlok, managed affinity cookie-k, stream és HTTP boundary munka, active és protocol-aware health checkek, service discovery, background task ownership, cache crate boundaryk, UDP beta guardrailok, origin-protection budgetek, ARM/macOS assetek és széles security hardening. Minden GitHubon
v1.4.0 – v1.4.7 2026. május Proxy operations line production proxy parityvel, gazdagabb route policyvel, traffic mirroringgal, dynamic upstream discoveryvel, modular runtime/config splittel, Apple Silicon és Linux ARM64 release assetekkel, GeoIP/Geo-Contexttel, config-tester archive-okkal és hardened TCP stream proxyinggal Minden GitHubon
v1.3.0 – v1.3.7 2026. május PHP-FPM production line, managed php-fpm supervision, config tester és ACME companion binárisok, FIPS/ISO validation trackek, focused cache/proxy profilok és security hardening Minden GitHubon
v1.2.0 – v1.2.6 2026. május Cache és observability baseline route-scoped cache policyvel, memory/disk/tiered backendekkel, encrypted disk cache-sel, peer filllel, range cachinggel, Prometheusszal és OpenTelemetry exporttal Minden GitHubon
v1.1.x 2026 Certificate operations line TLS policy profilokkal, multi-certificate rustls SNI-vel, managed ACME issuance és renewal funkcióval, EAB-capable issuerekkel, file-backed TLS secretekkel és renewal unitokkal Minden GitHubon
v1.0.0 2026 Gateway foundation vhost routinggal, route-level static/proxy/redirect actionökkel, static file servinggel, reverse proxyinggal, rustls TLS-sel, admin control-plane-nel, secure headerekkel, systemd packaginggel és rootless konténerekkel GitHub
v0.5.0 Előzetes kiadás Első public pre-release milestone a stabil 1.x gateway line előtt GitHub

Lásd Változásnapló a részletes kiadási megjegyzésekhez.

Magyar