- Add showEditVhostModal() for editing virtual host properties - Add showEditBackendModal() for editing backend configuration - Add showEditServerModal() for editing server properties - Modern card-based UI with inline edit/delete actions - Toggle enable/disable for backends - Fix haproxyctl to read server option from backend UCI sections - Add debug logging to container startup script Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
61 lines
1.6 KiB
Makefile
61 lines
1.6 KiB
Makefile
# SPDX-License-Identifier: MIT
|
|
# SecuBox HAProxy - Load Balancer & Reverse Proxy in LXC
|
|
# Copyright (C) 2025 CyberMind.fr
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=secubox-app-haproxy
|
|
PKG_VERSION:=1.0.0
|
|
PKG_RELEASE:=13
|
|
|
|
PKG_MAINTAINER:=CyberMind <contact@cybermind.fr>
|
|
PKG_LICENSE:=MIT
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/secubox-app-haproxy
|
|
SECTION:=secubox
|
|
CATEGORY:=SecuBox
|
|
SUBMENU:=Services
|
|
TITLE:=HAProxy Load Balancer & Reverse Proxy
|
|
DEPENDS:=+lxc +lxc-common +openssl-util +wget-ssl +tar +jsonfilter +acme +acme-acmesh +socat
|
|
PKGARCH:=all
|
|
endef
|
|
|
|
define Package/secubox-app-haproxy/description
|
|
HAProxy load balancer and reverse proxy running in an LXC container.
|
|
Features:
|
|
- Virtual hosts with SNI routing
|
|
- Multi-certificate SSL/TLS termination
|
|
- Let's Encrypt auto-renewal via ACME
|
|
- Backend health checks
|
|
- URL-based routing and redirections
|
|
- Stats dashboard
|
|
- Rate limiting and ACLs
|
|
endef
|
|
|
|
define Package/secubox-app-haproxy/conffiles
|
|
/etc/config/haproxy
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/secubox-app-haproxy/install
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/etc/config/haproxy $(1)/etc/config/haproxy
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/etc/init.d/haproxy $(1)/etc/init.d/haproxy
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) ./files/usr/sbin/haproxyctl $(1)/usr/sbin/haproxyctl
|
|
|
|
$(INSTALL_DIR) $(1)/usr/share/haproxy/templates
|
|
$(INSTALL_DATA) ./files/usr/share/haproxy/templates/* $(1)/usr/share/haproxy/templates/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/share/haproxy/certs
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,secubox-app-haproxy))
|