Files
myron dc55e6c45b Initial commit: JARVIS AI dashboard v2.3
- 4-tier chat: HA control → Ollama → Groq → Claude
- Push-based agent system with heartbeat/metrics
- Network monitoring, alerts, Proxmox, Home Assistant
- Windows + Linux agent installers
- Stats cache cron, facts collector, KB engine
2026-05-25 13:22:57 +00:00

12 lines
307 B
ApacheConf

Options -Indexes
RewriteEngine On
# Route all /api/* requests to api.php
RewriteCond %{REQUEST_URI} ^/api(/|$)
RewriteRule ^api(/.*)?$ api.php [QSA,L]
# Everything else serves static files or index.html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]