mirror of
https://github.com/myronblair/jarvis
synced 2026-06-30 17:50:23 -05:00
dc55e6c45b
- 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
12 lines
307 B
ApacheConf
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]
|