Най-ново Stable — v1.6.30

Download Fluxheim

Pre-built Linux binaries for x86_64 and ARM64, plus macOS developer builds. Издадено на 23 юни 2026 г..

Пълен Препоръчано

Пълен production build

Всички стабилни production модули: 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 backend-и (memory, disk, tiered)
gzip, zstd и Brotli compression
TLS + управляван ACME renewal
Локален GeoIP country/ASN context
Hardened TCP stream proxying режим режим
Prometheus + OpenTelemetry observability observability
~10.3 MB binary
Load Balancer Ново

Load balancer edge

Фокусиран HTTP/TCP load-balancer build без cache, static web, PHP, GeoIP, stream proxying или traffic mirroring.

Advanced pool selection
Drain, disable и force-down
Hardened LB core модул модул
TLS + управляван ACME renewal
PHP Managed PHP-FPM режим режим

PHP application build

Static web + reverse proxy + PHP-FPM FastCGI bridge модул модул. Идеален за WordPress и PHP front-controller приложения. Без compile-нат cache module.

PHP-FPM FastCGI bridge модул модул
Static asset serving от същия root
TLS + управляван ACME renewal
~8.9 MB binary
Cache build

Cache edge build

Фокусиран cache edge без local static web serving. Включва proxy, cache, compression, TLS и ACME. Идеален за CDN-style deployment-и.

Reverse proxy + cache пакет пакет
Cache-safe compression контроли
TLS + управляван ACME renewal
Без compile-нат static web module
~6.8 MB binary
Proxy build

Proxy edge build

Фокусиран reverse proxy без cache, static web или dedicated load-balancer module. Проектиран за pure reverse-proxy deployment-и с TLS, ACME, compression и upstream resilience.

Само reverse proxy
ACL, rate limits, retry, health check
TLS + управляван ACME renewal
Без compile-нат cache или web module
~5.8 MB binary

Platform Downloads

Production Linux builds plus Level 1 macOS developer tarballs.

macOS е само за developer testing
Build профил Linux x86_64 Linux ARM64 macOS dev build
Пълен x86_64-linux aarch64-linux Apple Silicon
PHP x86_64-linux aarch64-linux -
Load Balancer x86_64-linux aarch64-linux -
Cache build x86_64-linux aarch64-linux -
Proxy build x86_64-linux aarch64-linux -
Config tester tool x86_64-linux aarch64-linux -

Инсталация

bash — tarball инсталация
# 1. Изтегли пълния Linux build tarball
# Използвай aarch64-linux вместо x86_64-linux на ARM64 server-и.
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 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. Стартирай директно (или виж Systemd tab за service setup)
sudo fluxheim --config /etc/fluxheim/fluxheim.toml
bash — rootless Podman старт старт
# Pull GHCR images (full, load-balancer, cache, proxy и PHP варианти)
podman pull ghcr.io/valkyoth/fluxheim:v1.6.30         # пълен
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 вариант вариант

# Същият 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 port-ове 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

# Провери log-ове
podman logs -f fluxheim
bash — systemd service setup setup
# 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

# Настрой directory-та
sudo mkdir -p /etc/fluxheim /srv/fluxheim /var/log/fluxheim
sudo chown fluxheim:fluxheim /srv/fluxheim /var/log/fluxheim

# Reload systemd и enable service-а
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 да bind-не към port-ове 80 и 443 без root. Unit file-ът включва security hardening options.

bash — managed ACME certificate издаване
# Fluxheim доставя acme-init за guided certificate setup
# 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 deployment-и
fluxheim-acme status
fluxheim-acme renew
fluxheim-acme reload
fluxheim.toml — ACME конфигурация
[[vhosts]]
name = "site"
hosts = ["example.com", "www.example.com"]

[vhosts.tls]
enabled = true

[vhosts.tls.acme]
enabled = true
# пример: issuer = "letsencrypt"
Пълна TLS & ACME документация →

Системни изисквания

Поддържани платформи

  • Linux x86_64 (kernel 4.14+)
  • Linux ARM64 / aarch64
  • Само macOS developer binary-та

Container images

Всички release image build-и се публикуват в GHCR и Quay.

  • Wolfi (минимален, hardened)
  • Пълен, load-balancer, cache, proxy и PHP image profiles
  • Alpine Linux
  • SUSE Micro
  • Debian
  • Публикувано в GHCR и Quay
Версия Дата Акценти Изтегляния
v1.6.0 – v1.6.30 Най-нова серия
юни 2026 г. Native-runtime cutover линия: Pingora-exit foundations, Fluxheim-owned HTTP/1 и HTTP/2 path-ове, native TLS/listener preview-и, route proxy/static-web parity, compression и 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 г. Enterprise load-balancer и runtime-ownership линия: focused load-balancer binary/images, runtime member и weight controls, managed affinity cookies, stream и 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 и широко security hardening. Всичко в GitHub
v1.4.0 – v1.4.7 май 2026 г. Proxy operations линия с production proxy parity, richer route policy, traffic mirroring, dynamic upstream discovery, modular runtime/config split, Apple Silicon и Linux ARM64 release assets, GeoIP/Geo-Context, config-tester archives и hardened TCP stream proxying Всичко в GitHub
v1.3.0 – v1.3.7 май 2026 г. PHP-FPM production линия, managed php-fpm supervision, config tester и ACME companion binary-та, FIPS/ISO validation tracks, focused cache/proxy profiles и security hardening Всичко в GitHub
v1.2.0 – v1.2.6 май 2026 г. Cache и observability baseline с route-scoped cache policy, memory/disk/tiered backend-и, encrypted disk cache, peer fill, range caching, Prometheus и OpenTelemetry export Всичко в GitHub
v1.1.x 2026 Certificate operations линия с TLS policy profiles, multi-certificate rustls SNI, managed ACME issuance и renewal, EAB-capable issuers, file-backed TLS secrets и renewal units Всичко в GitHub
v1.0.0 2026 Gateway foundation с vhost routing, route-level static/proxy/redirect actions, static file serving, reverse proxying, rustls TLS, admin control-plane, secure headers, systemd packaging и rootless containers GitHub
v0.5.0 Предварително издание Първи public pre-release milestone преди stable 1.x gateway линията GitHub

Виж Дневник на промените за подробни release notes.

Български