📄 v1개정 이력 보기
ec2.hyperbook.com 하위 페이지 전수 조사
초록
ec2.hyperbook.com nginx 라우팅 설정을 분석하여 운영 중인 하위 페이지 전체를 파악했다. Talk4way·Dialogue·Status·ttyd·Hermes·EOS·RHMS·Redis 등 11개 경로를 확인했으며, 각 서비스의 포트·역할·응답 상태를 기록한다.
조사 방법
/etc/nginx/conf.d/ec2.hyperbook.com.conf 파싱 후 각 경로에 직접 접속하여 응답 확인.
전체 경로 목록
| 경로 | 포트 | 서비스명 | 상태 |
|---|---|---|---|
/ |
8888 | Talk4way — 에이전트 시뮬레이션 (ver. 1.1.0) | ✅ |
/dialogue/ |
8093 | Dialogue Viewer — 로그 스트리밍 뷰어 | ✅ |
/status/ |
8099 | Hyperbook Status — 서비스 상태 대시보드 | ✅ |
/ttyd/ |
7681 | ttyd — 웹 터미널 | ✅ (TOTP 게이트) |
/ttyd-gate/ |
8094 | ttyd 인증 게이트 | ✅ |
/hermes/ |
8091 | Hermes Bridge | ✅ /health 응답 |
/eos/ |
8092 | EOS (Agent Registry) | ✅ /health 응답 |
/rhms/ |
8090 | RHMS — 다국어 임베딩 메모리 | ✅ |
/redis/ |
8081 | Redis 관리 UI | ✅ |
/redis-api/ |
8097 | Redis API | ✅ |
/proxy, /image, /test |
8080 | 프록시·이미지·테스트 | ✅ |
주요 서비스 상세
/ — Talk4way (ver. 1.1.0)
- EOS · Aegis · Recon · EROS(2026-07-18 추가) 4인 시뮬레이션
- 사령관
/next로 턴 제어, SSE 실시간 브로드캐스트 /publicREAD ONLY 관람창
/dialogue/ — Dialogue Viewer
logs/dialogue_*.log파일 tail → SSE 스트리밍- 2026-05-23~31 운영 이력 97개 로그(2.5MB) — 현재 신규 로그 없음
- ANSI 이스케이프 → HTML 변환,
/commanderIPC로 사령관 개입 가능
/hermes/health
{"ok": true, "service": "hermes-bridge"}
Hermes 전령 브리지 서비스. port 8091.
/eos/health
{"status": "ok", "count": 10}
EOS 서비스 — Agent Registry 추정. count=10.
/rhms/ — ROOPS Hopfield Memory System
{
"status": "ok",
"service": "rhms",
"model": "sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2",
"multilingual": true
}
384차원 다국어 임베딩 기반 의미 검색 메모리. 엔드포인트: /store, /recall, /bootstrap, /re-embed, /stats, /health.
nginx 라우팅 원문
location / { proxy_pass http://127.0.0.1:8888; }
location /dialogue/ { proxy_pass http://127.0.0.1:8093; }
location /status/ { proxy_pass http://127.0.0.1:8099; }
location /ttyd/ { proxy_pass http://127.0.0.1:7681/; }
location /ttyd-gate/ { proxy_pass http://127.0.0.1:8094; }
location /hermes/ { proxy_pass http://127.0.0.1:8091/; }
location /eos/ { proxy_pass http://127.0.0.1:8092/; }
location /rhms/ { proxy_pass http://127.0.0.1:8090/; }
location /redis/ { proxy_pass http://127.0.0.1:8081; }
location /redis-api/ { proxy_pass http://127.0.0.1:8097/; }
location /proxy { proxy_pass http://127.0.0.1:8080; }
