-
Notifications
You must be signed in to change notification settings - Fork 532
/
server-http2.js
55 lines (44 loc) · 1.31 KB
/
server-http2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
'use strict'
const { unlinkSync, readFileSync } = require('node:fs')
const { createSecureServer } = require('node:http2')
const os = require('node:os')
const path = require('node:path')
const cluster = require('node:cluster')
const key = readFileSync(path.join(__dirname, '..', 'test', 'fixtures', 'key.pem'), 'utf8')
const cert = readFileSync(path.join(__dirname, '..', 'test', 'fixtures', 'cert.pem'), 'utf8')
const socketPath = path.join(os.tmpdir(), 'undici.sock')
const port = process.env.PORT || socketPath
const timeout = parseInt(process.env.TIMEOUT, 10) || 1
const workers = parseInt(process.env.WORKERS) || os.cpus().length
const sessionTimeout = 600e3 // 10 minutes
if (cluster.isPrimary) {
try {
unlinkSync(socketPath)
} catch (_) {
// Do nothing if the socket does not exist
}
for (let i = 0; i < workers; i++) {
cluster.fork()
}
} else {
const buf = Buffer.alloc(64 * 1024, '_')
const server = createSecureServer(
{
key,
cert,
allowHTTP1: true,
sessionTimeout
}
)
server.on('stream', (stream) => {
setTimeout(() => {
stream.respond({
'content-type': 'text/plain; charset=utf-8',
':status': 200
})
stream.setEncoding('utf-8').end(buf)
}, timeout)
})
server.keepAliveTimeout = 600e3
server.listen(port)
}