Bun

指南HTTP

使用 Bun 在 HTTP 服务器上配置 TLS

设置 tls 键来配置 TLS。keycert 都是必需的。key 应该是您的私钥的内容;cert 应该是您颁发的证书的内容。使用 Bun.file() 读取内容。

const server = Bun.serve({
  fetch: request => new Response("Welcome to Bun!"),
  tls: {
    cert: Bun.file("cert.pem"),
    key: Bun.file("key.pem"),
  },
});

默认情况下,Bun 信任 Mozilla 策划的知名根 CA 默认列表。要覆盖此列表,请传递证书数组作为 ca

const server = Bun.serve({
  fetch: request => new Response("Welcome to Bun!"),
  tls: {
    cert: Bun.file("cert.pem"),
    key: Bun.file("key.pem"),
    ca: [Bun.file("ca1.pem"), Bun.file("ca2.pem")],
  },
});