Initial LisgloSIPS V2 implementation

This commit is contained in:
hectorzhao
2026-06-22 10:56:38 +08:00
commit 5fa1bd35e9
303 changed files with 35644 additions and 0 deletions
@@ -0,0 +1,22 @@
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LisgloSIPS</title>
<style>
:root { color-scheme: light; font-family: Arial, sans-serif; background: #f5f6f8; color: #12121a; }
body { margin: 0; min-height: 100vh; display: grid; place-items: center; }
main { width: min(560px, calc(100% - 48px)); border-top: 4px solid #d9c3a0; padding: 32px 0; }
h1 { margin: 0 0 12px; font-size: 32px; letter-spacing: 0; }
p { margin: 0; color: #5d606b; line-height: 1.7; }
</style>
</head>
<body>
<main>
<h1>LisgloSIPS</h1>
<p>聆界SIP管理平台服务入口已就绪。</p>
</main>
</body>
</html>
+30
View File
@@ -0,0 +1,30 @@
import { createServer } from 'node:http';
const host = process.env.HOST || '127.0.0.1';
const port = Number.parseInt(process.env.PORT || '3000', 10);
const server = createServer((request, response) => {
response.setHeader('Content-Type', 'application/json; charset=utf-8');
response.setHeader('Cache-Control', 'no-store');
response.setHeader('X-Content-Type-Options', 'nosniff');
if (request.method === 'GET' && (request.url === '/healthz' || request.url === '/api/health')) {
response.writeHead(200);
response.end(JSON.stringify({ status: 'ok', service: 'lisglosips-api-placeholder' }));
return;
}
response.writeHead(404);
response.end(JSON.stringify({ status: 'not_found' }));
});
server.listen(port, host);
function shutdown() {
server.close((error) => process.exit(error ? 1 : 0));
setTimeout(() => process.exit(1), 10_000).unref();
}
process.on('SIGTERM', shutdown);
process.on('SIGINT', shutdown);