- Add secubox-app-haproxy: LXC-containerized HAProxy service
- Alpine Linux container with HAProxy
- Multi-certificate SSL/TLS termination with SNI routing
- ACME/Let's Encrypt auto-renewal
- Virtual hosts management
- Backend health checks and load balancing
- Add luci-app-haproxy: Full LuCI web interface
- Overview dashboard with service status
- Virtual hosts management with SSL options
- Backends and servers configuration
- SSL certificate management (ACME + import)
- ACLs and URL-based routing rules
- Statistics dashboard and logs
- Settings for ports, timeouts, ACME
- Update luci-app-secubox-portal:
- Add Services category with HAProxy, HexoJS, PicoBrew,
Tor Shield, Jellyfin, Home Assistant, AdGuard Home, Nextcloud
- Make portal dynamic - only shows installed apps
- Add empty state UI for sections with no apps
- Remove 404 errors for uninstalled apps
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
57 lines
1012 B
JSON
57 lines
1012 B
JSON
{
|
|
"luci-app-haproxy": {
|
|
"description": "Grant access to HAProxy load balancer",
|
|
"read": {
|
|
"ubus": {
|
|
"luci.haproxy": [
|
|
"status",
|
|
"get_stats",
|
|
"list_vhosts",
|
|
"get_vhost",
|
|
"list_backends",
|
|
"get_backend",
|
|
"list_servers",
|
|
"list_certificates",
|
|
"list_acls",
|
|
"list_redirects",
|
|
"get_settings",
|
|
"get_logs"
|
|
]
|
|
},
|
|
"uci": ["haproxy"]
|
|
},
|
|
"write": {
|
|
"ubus": {
|
|
"luci.haproxy": [
|
|
"create_vhost",
|
|
"update_vhost",
|
|
"delete_vhost",
|
|
"create_backend",
|
|
"update_backend",
|
|
"delete_backend",
|
|
"create_server",
|
|
"update_server",
|
|
"delete_server",
|
|
"request_certificate",
|
|
"import_certificate",
|
|
"delete_certificate",
|
|
"create_acl",
|
|
"update_acl",
|
|
"delete_acl",
|
|
"create_redirect",
|
|
"delete_redirect",
|
|
"save_settings",
|
|
"install",
|
|
"start",
|
|
"stop",
|
|
"restart",
|
|
"reload",
|
|
"generate",
|
|
"validate"
|
|
]
|
|
},
|
|
"uci": ["haproxy"]
|
|
}
|
|
}
|
|
}
|