mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import type { OpenAPIHono } from "@hono/zod-openapi";
|
|
import type { Server } from "bun";
|
|
import type { Config } from "~/packages/config-manager/config.type";
|
|
import type { HonoEnv } from "~/types/api";
|
|
import { debugResponse } from "./api.ts";
|
|
|
|
export const createServer = (
|
|
config: Config,
|
|
app: OpenAPIHono<HonoEnv>,
|
|
): Server =>
|
|
Bun.serve({
|
|
port: config.http.bind_port,
|
|
reusePort: true,
|
|
tls: config.http.tls.enabled
|
|
? {
|
|
key: Bun.file(config.http.tls.key),
|
|
cert: Bun.file(config.http.tls.cert),
|
|
passphrase: config.http.tls.passphrase,
|
|
ca: config.http.tls.ca
|
|
? Bun.file(config.http.tls.ca)
|
|
: undefined,
|
|
}
|
|
: undefined,
|
|
hostname: config.http.bind || "0.0.0.0", // defaults to "0.0.0.0"
|
|
async fetch(req, server): Promise<Response> {
|
|
const output = await app.fetch(req, { ip: server.requestIP(req) });
|
|
|
|
if (config.logging.log_responses) {
|
|
await debugResponse(output.clone());
|
|
}
|
|
|
|
return output;
|
|
},
|
|
});
|