server/utils/server.ts

23 lines
803 B
TypeScript
Raw Normal View History

import type { Hono } from "@hono/hono";
2024-04-07 07:30:49 +02:00
import type { Config } from "config-manager";
export const createServer = (config: Config, app: Hono) =>
2024-04-07 07:30:49 +02:00
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,
2024-04-07 07:30:49 +02:00
hostname: config.http.bind || "0.0.0.0", // defaults to "0.0.0.0"
fetch(req, server) {
return app.fetch(req, { ip: server.requestIP(req) });
2024-04-07 07:30:49 +02:00
},
});