feat: Add /health endpoint to Hermes gateway (nginx.conf)\n\nFixes #285
Some checks failed
CI / validate (pull_request) Failing after 12s
CI / auto-merge (pull_request) Has been skipped

This commit is contained in:
Alexander Whitestone
2026-03-24 00:51:23 -04:00
parent 36edceae42
commit bf59b28271

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.