secubox-openwrt/package/secubox/luci-app-metablogizer/root/usr/share/rpcd/acl.d/luci-app-metablogizer.json
CyberMind-FR fa5d573755 feat(multi): New LuCI apps, MetaBlogizer dual-runtime, service watchdog
- Add luci-app-lyrion: Music server dashboard
- Add luci-app-mailinabox: Email server management
- Add luci-app-nextcloud: Cloud storage dashboard
- Add luci-app-mitmproxy: Security proxy in security section
- Add luci-app-magicmirror2: Smart display dashboard
- Add secubox-app-metablogizer: CLI tool with uhttpd/nginx support
- Update luci-app-metablogizer: Runtime selection, QR codes, social share
- Update secubox-core v0.8.1: Service watchdog (auto-restart crashed services)
- Update haproxyctl: Hostname validation to prevent config errors
- Fix portal.js app discovery

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

47 lines
872 B
JSON

{
"luci-app-metablogizer": {
"description": "Grant access to MetaBlogizer Static Site Publisher",
"read": {
"ubus": {
"luci.metablogizer": [
"status",
"list_sites",
"get_site",
"get_publish_info",
"get_settings"
],
"file": ["read", "list", "stat"]
},
"uci": ["metablogizer"],
"file": {
"/srv/metablogizer/sites/*": ["read", "list"]
}
},
"write": {
"ubus": {
"luci.metablogizer": [
"create_site",
"update_site",
"delete_site",
"sync_site",
"save_settings",
"upload_file",
"list_files"
],
"luci.haproxy": [
"create_backend",
"create_server",
"create_vhost",
"delete_backend",
"delete_vhost"
],
"file": ["write", "remove"]
},
"uci": ["metablogizer"],
"file": {
"/srv/metablogizer/sites/*": ["write"]
}
}
}
}