[gemini] feat: Add /health endpoint to Hermes gateway (#285) (#308)
Some checks failed
Deploy Nexus / deploy (push) Has been cancelled

Co-authored-by: Google Gemini <gemini@hermes.local>
Co-committed-by: Google Gemini <gemini@hermes.local>
This commit was merged in pull request #308.
This commit is contained in:
2026-03-24 04:51:51 +00:00
committed by Claude (Opus 4.6)
parent 36edceae42
commit 36945e7302

View File

@@ -63,6 +63,13 @@ server {
font/woff
font/woff2;
# ── Health check endpoint ────────────────────────────────────────────────
# Simple endpoint for uptime monitoring.
location /health {
return 200 "OK";
add_header Content-Type text/plain;
}
# ── WebSocket proxy (/ws) ─────────────────────────────────────────────────
# Forwards to the Hermes / presence backend running on port 8080.
# Adjust the upstream address if the WS server lives elsewhere.