Monorepo for Aesthetic.Computer aesthetic.computer
at main 20 lines 348 B view raw
1:8080 { 2 # Serve the dashboard (index.html) 3 root * /workspaces/aesthetic-computer/censor 4 file_server 5 6 # Proxy API requests to the filter API server 7 handle /api/* { 8 reverse_proxy localhost:3000 9 } 10 11 # Keep the direct Ollama endpoint for testing 12 handle /censor { 13 reverse_proxy localhost:11434 14 } 15 16 respond /health 200 { 17 body "OK" 18 } 19} 20