mirror of
https://github.com/taylanbakircioglu/haproxy-openmanager.git
synced 2026-09-22 10:33:33 +00:00
93d7ad8fdb
Add automated SSL certificate management via ACME protocol (RFC 8555): - Full ACME client implementation (account registration, HTTP-01 challenges, certificate issuance/renewal) - Configurable ACME providers (Let's Encrypt, ZeroSSL, custom CA) via Settings UI - Auto-renewal scheduler with PENDING -> Apply -> APPLIED flow alignment - ACME account management (register, deactivate) from UI - Certificate request wizard with domain validation and cluster targeting - Zero changes to HAProxy agent scripts - challenges routed through existing architecture - Comprehensive security hardening (no private key exposure in API responses) - Full backward compatibility with existing SSL, Apply, Rollback, and Restore workflows - Updated README, API documentation, and Kubernetes deployment notes - Version management embedded in code (v1.1.0) - UI messaging improvements for agent-pull architecture accuracy Made-with: Cursor
20 lines
580 B
YAML
20 lines
580 B
YAML
# Local build override for development testing
|
|
# Usage: docker compose -f docker-compose.yml -f docker-compose.localtest.yml up --build -d
|
|
# This overrides the pre-built images with local builds for backend and frontend.
|
|
|
|
services:
|
|
backend:
|
|
image: haproxy-openmanager-backend:localtest
|
|
build:
|
|
context: ./backend
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- haproxy_configs:/etc/haproxy
|
|
- ./version.json:/app/version.json:ro
|
|
|
|
frontend:
|
|
image: haproxy-openmanager-frontend:localtest
|
|
build:
|
|
context: ./frontend
|
|
dockerfile: Dockerfile
|