mirror of
https://github.com/dalbodeule/hop-gate.git
synced 2026-02-04 15:52:24 +09:00
- Implemented gRPC-based tunnel sessions for multiplexing HTTP requests via `grpcTunnelSession` with features like `recvLoop`, `send`, and per-stream state management. - Registered and unregistered tunnels for domains, replacing DTLS-based sessions for improved scalability and maintainability. - Integrated domain validation checks during gRPC tunnel handshake with configurable validator support. - Modified static error pages (`400.html`, `404.html`, `502.html`, `504.html`, `500.html`, `525.html`) to include favicon linking, enhancing error page presentation.
33 lines
1.5 KiB
HTML
33 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>502 Bad Gateway - HopGate</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="/__hopgate_assets__/errors.css">
|
|
<link rel="icon" href="/__hopgate_assets__/favicon.ico">
|
|
</head>
|
|
<body class="min-h-screen bg-slate-950 text-slate-50 flex items-center justify-center px-4">
|
|
<div class="w-full max-w-xl text-center">
|
|
<div class="items-center justify-center gap-3 mb-8 flex flex-col">
|
|
<img src="/__hopgate_assets__/hop-gate.png" alt="HopGate" class="h-8 w-[240px] opacity-90" />
|
|
<h2 class="text-md font-medium tracking-[0.25em] uppercase text-slate-400">HopGate</h2>
|
|
</div>
|
|
|
|
<div class="inline-flex items-baseline gap-4 mb-4">
|
|
<span class="text-6xl md:text-7xl font-extrabold tracking-[0.25em] text-amber-200">502</span>
|
|
<span class="text-lg md:text-xl font-semibold text-slate-100">Bad Gateway</span>
|
|
</div>
|
|
|
|
<p class="text-sm md:text-base text-slate-300 leading-relaxed">
|
|
HopGate could not get a valid response from the backend service.<br>
|
|
HopGate가 백엔드 서비스로부터 유효한 응답을 받지 못했습니다.
|
|
</p>
|
|
|
|
<div class="mt-8 text-xs md:text-sm text-slate-500">
|
|
This may happen when the origin is down, misconfigured, or responding with invalid data.<br>
|
|
원본 서버가 다운되었거나 설정이 잘못되었거나, 잘못된 응답을 보내는 경우 발생할 수 있습니다.
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |