secubox-openwrt/package/secubox/luci-app-ollama/root/usr/share/rpcd/acl.d/luci-app-ollama.json
CyberMind-FR 2d9beb6f67 feat(kiss): Collapsible multi-level navigation with extended Ollama features
- KISS Theme v2.1: Collapsible nav sections with icons, auto-expand active
- Add comprehensive navigation with all SecuBox apps organized by category
- Fix Client Guardian path to admin/secubox/security/guardian
- Fix Cookie Tracker path to admin/secubox/interceptor/cookies

- Ollama: Add system resources card (RAM/disk usage with progress bars)
- Ollama: Add API endpoints card with copy-to-clipboard
- Ollama: Add container logs viewer with refresh
- Ollama: Add system_info, logs, model_info RPCD methods
- Ollama: Update stats to show RAM/disk usage

- Fix Vortex Firewall menu path to admin/secubox/security

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-12 06:56:26 +01:00

40 lines
646 B
JSON

{
"luci-app-ollama": {
"description": "Grant access to LuCI Ollama Dashboard",
"read": {
"ubus": {
"luci.ollama": [
"status",
"models",
"config",
"health",
"system_info",
"logs",
"model_info"
],
"system": [ "info", "board" ],
"file": [ "read", "stat", "exec" ]
},
"uci": [ "ollama" ],
"file": {
"/etc/config/ollama": [ "read" ],
"/srv/ollama/*": [ "read" ]
}
},
"write": {
"ubus": {
"luci.ollama": [
"start",
"stop",
"restart",
"model_pull",
"model_remove",
"chat",
"generate"
]
},
"uci": [ "ollama" ]
}
}
}