secubox-openwrt/package/secubox/luci-app-service-registry/root/usr/share/rpcd/acl.d/luci-app-service-registry.json
CyberMind-FR ab8e0c44bc feat(service-registry): Add dynamic health checks and URL readiness wizard
- Add health check RPCD methods:
  - check_service_health: Check DNS, cert, firewall for single domain
  - check_all_health: Batch check all published services
- Add URL Readiness Checker wizard card to dashboard:
  - Check if domain DNS resolves correctly
  - Verify firewall ports 80/443 are open
  - Check SSL certificate status
  - Show actionable recommendations
- Display inline health status badges on service rows:
  - DNS resolution status (ok/failed)
  - Certificate expiry (ok/warning/critical/expired)
- Add health summary bar showing overall system status
- Add per-service health check button

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-28 07:01:27 +01:00

63 lines
1.2 KiB
JSON

{
"luci-app-service-registry": {
"description": "Grant access to Service Registry",
"read": {
"ubus": {
"luci.service-registry": [
"list_services",
"get_service",
"list_categories",
"get_qr_data",
"get_certificate_status",
"check_service_health",
"check_all_health",
"get_landing_config"
],
"luci.haproxy": [
"status",
"list_vhosts",
"list_backends",
"list_certificates"
],
"luci.tor-shield": [
"status",
"hidden_services"
],
"luci.secubox": [
"get_services"
]
},
"uci": ["service-registry", "haproxy", "tor-shield"]
},
"write": {
"ubus": {
"luci.service-registry": [
"publish_service",
"unpublish_service",
"sync_providers",
"generate_landing_page",
"update_service",
"delete_service",
"save_landing_config"
],
"luci.haproxy": [
"create_vhost",
"create_backend",
"create_server",
"request_certificate",
"delete_vhost",
"delete_backend"
],
"luci.tor-shield": [
"add_hidden_service",
"remove_hidden_service"
]
},
"uci": ["service-registry"],
"file": {
"/www/secubox-services.html": ["write"]
}
}
}
}