- 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>
40 lines
646 B
JSON
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" ]
|
|
}
|
|
}
|
|
}
|